Skip to content

Commit

Permalink
Drop tests for py35 which is EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
d-kuhn committed May 9, 2023
1 parent eeb889c commit 81226f8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 0 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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: .
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint, py35, py36, py37, py38, py39, safety
envlist = lint, py36, py37, py38, py39, safety

[testenv]
deps =
Expand Down

0 comments on commit 81226f8

Please sign in to comment.