From df384f91be516bcc5001c8ec44a8b513a949e479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Tue, 5 Mar 2024 16:42:42 +0100 Subject: [PATCH] removed Docker unit tests --- .dockerignore | 2 -- CHANGELOG.md | 5 +++++ Dockerfile | 21 --------------------- README.md | 5 ++--- 4 files changed, 7 insertions(+), 26 deletions(-) delete mode 100644 .dockerignore delete mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index f98ec882..00000000 --- a/.dockerignore +++ /dev/null @@ -1,2 +0,0 @@ -.git/ -.idea/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 55923af8..9814e220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,6 @@ # v2.24.3 + +Build system +============ + +* removed Docker unit tests diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index fae211e4..00000000 --- a/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -FROM python:3.8 - -ADD requirements.txt /app/requirements.txt -RUN pip install -r /app/requirements.txt && \ - pip install nose2 mock coverage nose2[mp] nose2[coverage_plugin] - -ADD satella /app/satella -ADD tests /app/tests -ADD unittest.cfg /app/unittest.cfg -ADD setup.py /app/setup.py -ADD setup.cfg /app/setup.cfg -ADD LICENSE /app/LICENSE -ADD README.md /app/README.md -ADD MANIFEST.in /app/MANIFEST.in - -ADD tests/test_docker.sh /test_docker.sh -RUN chmod ugo+x /test_docker.sh - -WORKDIR /app - -CMD ["/test_docker.sh"] diff --git a/README.md b/README.md index e80884b1..2bbb50ed 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,6 @@ this is copyright (c) respective authors. Running unit tests ------------------ -Tests run by default on CircleCI. Just build and run the attached [Dockerfile](Dockerfile). These tests run on Python -3.8. Also, if you run it under PyPy it will launch some tests targeted at that platform. +Tests run by default on CircleCI. -They pass on Windows too, but some tests requiring POSIX-like functionality are skipped. +They should pass on Windows too, but some tests requiring POSIX-like functionality are skipped. -- GitLab