Skip to content

Commit

Permalink
Broaden the test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Babic committed Dec 22, 2024
1 parent 30eb4e2 commit 65ef573
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
django: ["5.1"]
wagtail: ["6.2", "6.3"]
django: ["4.2", "5.0", "5.2"]
wagtail: ["5.2", "6.0", "6.1", "6.2", "6.3"]
db: ["sqlite"]

steps:
Expand Down Expand Up @@ -81,8 +81,8 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.12"]
django: ["5.1"]
wagtail: ["6.2", "6.3"]
django: ["4.2", "5.2"]
wagtail: ["5.2", "6.0", "6.2", "6.3"]
db: ["postgres"]

services:
Expand Down
9 changes: 8 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
min_version = 4.11

envlist =
py{3.11,3.12}-django{5.1}-wagtail{6.2,6.3}
py3.11-django4.2-wagtail{5.2,6.0}
py3.12-django{5.0,5.1,5.2}-wagtail{6.1,6.2,6.3}

[gh-actions]
python =
Expand Down Expand Up @@ -31,7 +32,13 @@ setenv =
extras = testing

deps =
django4.2: Django>=4.2,<5
django5.0: Django>=5.0,<5.1
django5.1: Django>=5.1,<5.2
django5.2: Django>=5.2,<5.3
wagtail5.2: wagtail>=5.2,<6.0
wagtail6.0: wagtail>=6.0,<6.1
wagtail6.1: wagtail>=6.1,<6.2
wagtail6.2: wagtail>=6.2,<6.3
wagtail6.3: wagtail>=6.3,<6.4
postgres: psycopg2>=2.9
Expand Down

0 comments on commit 65ef573

Please sign in to comment.