Skip to content

Commit

Permalink
Fix the CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CamLamb committed Dec 21, 2023
1 parent b77844d commit be07c28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.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: ["3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 8 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[tox]
envlist =
py{38,39,310,311}-dj{32}
py{38,39,310}-dj{40}
py{38,39,310,311}-dj{41}
py{38,39,310,311,312}-dj{42}
py{310,311,312}-dj{50,latest}
dj{32,40,41,42,latest}
skip_missing_interpreters = True

[testenv]
setenv =
Expand All @@ -14,7 +20,8 @@ deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<4.3
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
djlatest: Django

install_command = pip install -U {opts} {packages}
Expand Down

0 comments on commit be07c28

Please sign in to comment.