From 81226f8b7185147a0ff7be01dcfa977d48daf628 Mon Sep 17 00:00:00 2001 From: Dennis Kuhn Date: Tue, 9 May 2023 12:12:52 +0200 Subject: [PATCH] Drop tests for py35 which is EOL --- .github/workflows/integration-tests.yml | 2 +- README.md | 1 - docker-compose.yml | 11 ----------- tox.ini | 2 +- 4 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index acf3910..b472ff8 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python_version: [35, 36, 37, 38, 39] + python_version: [36, 37, 38, 39] steps: - name: Install python prerequisites run: "sudo pip3 install docker-compose" diff --git a/README.md b/README.md index 6d3f9c8..9414095 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ For running the integration tests you need docker compose. For running the linte $ docker-compose run --rm integration_tests_py38 $ docker-compose run --rm integration_tests_py37 $ docker-compose run --rm integration_tests_py36 -$ docker-compose run --rm integration_tests_py35 # Run linter and safety checks $ tox -e lint diff --git a/docker-compose.yml b/docker-compose.yml index 8e3b7ad..db6f4ff 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,16 +1,5 @@ version: "3" services: - integration_tests_py35: - build: - context: . - dockerfile: Dockerfile - args: - PYTHON_VERSION: 3.5 - volumes: - - .:/src - depends_on: [consul1, consul2, consul3, consul4] - command: - ["tox", "-e", "py35"] integration_tests_py36: build: context: . diff --git a/tox.ini b/tox.ini index 601a0b1..8aaf9c5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint, py35, py36, py37, py38, py39, safety +envlist = lint, py36, py37, py38, py39, safety [testenv] deps =