Skip to content

Commit

Permalink
Skip testing on Python 3.8
Browse files Browse the repository at this point in the history
`python-docker-compose-v2` cannot be installed on Python 3.8,
unfortunately.  Also, since its a pytest plugin, there doesn't seem
to be a way of skipping tests that depend on, since a plugins is
enabled globally and will fail all of pytest if it cannot be loaded.
  • Loading branch information
lunkwill42 committed Dec 12, 2024
1 parent a83387f commit e071841
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
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 = py{38,39,310,311}
envlist = py{39,310,311}
basepython = python3.9
skipsdist = True

Expand Down

0 comments on commit e071841

Please sign in to comment.