Skip to content

Commit

Permalink
Include 4.1 in GitHub Action to demonstrate possible bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Nov 19, 2023
1 parent 7b5f250 commit 11d056a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
python-version: [3.9]
thing-to-test: [flake8, django-v3, django-v4]
thing-to-test: [flake8, django-v3, django-v41, django-v42]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
skipsdist = True
envlist = flake8, django-v{3,4}
envlist = flake8, django-v{3,41,42}

[testenv]
basepython = python3.9
Expand All @@ -9,7 +9,8 @@ deps =
coverage
-r{toxinidir}/requirements-base.txt
v3: Django>=3,<4
v4: Django>=4,<5
v41: Django>=4.1,<4.2
v42: Django>=4.2,<5

[testenv:flake8]
basepython = python3
Expand All @@ -26,4 +27,5 @@ extend-ignore=E402,E722,E501
THING_TO_TEST =
flake8: flake8
django-v3: django-v3
django-v4: django-v4
django-v41: django-v41
django-v42: django-v42

0 comments on commit 11d056a

Please sign in to comment.