Skip to content

Commit dba7b9f

Browse files
committed
Drop shortcodes from tox matrix
1 parent b4bd12f commit dba7b9f

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ Now you can run tests as shown below:
361361
tox
362362
```
363363

364-
or, you can run them for a specific environment `tox -e py313-dj51-wagtail70` or specific test
365-
`tox -e py313-dj51-wagtail70 -- tests.test_views.TestMediaChooserUploadView`
364+
or, you can run them for a specific environment `tox -e python3.13-django5.2-wagtail7.0` or specific test
365+
`tox -e python3.14-django5.2-wagtail7.0 -- tests.test_views.TestMediaChooserUploadView`
366366

367367
To run the test app interactively, use `tox -e interactive`, visit `http://127.0.0.1:8020/admin/` and log in with `admin`/`changeme`.

tox.ini

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
min_version = 4.30
33

44
env_list =
5-
python{3.11}-dj52-wagtail70
6-
python{3.12}-dj52-wagtail73
7-
python{3.13}-dj52-wagtail74
8-
python{3.14}-dj{52,60}-wagtail{74}
5+
python{3.11}-django5.2-wagtail7.0
6+
python{3.12}-django5.2-wagtail7.3
7+
python{3.13}-django5.2-wagtail7.4
8+
python{3.14}-django{5.2,6.0}-wagtail{7.4}
99

1010
[gh-actions]
1111
python =
12-
3.10: py3.10
13-
3.11: py3.11
14-
3.12: py3.12
15-
3.13: py3.13
16-
3.14: py3.14
12+
3.10: python3.10
13+
3.11: python3.11
14+
3.12: python3.12
15+
3.13: python3.13
16+
3.14: python3.14
1717

1818
[testenv]
1919
package = wheel
@@ -37,11 +37,11 @@ set_env =
3737
extras = testing
3838

3939
deps =
40-
dj52: Django>=5.2,<5.3
41-
dj60: Django>=6.0,<6.1
42-
wagtail70: wagtail>=7.0,<7.1
43-
wagtail73: wagtail>=7.3,<7.4
44-
wagtail74: wagtail>=7.4,<7.5
40+
django5.2: Django>=5.2,<5.3
41+
django6.0: Django>=6.0,<6.1
42+
wagtail7.0: wagtail>=7.0,<7.1
43+
wagtail7.3: wagtail>=7.3,<7.4
44+
wagtail7.4: wagtail>=7.4,<7.5
4545

4646
commands_pre =
4747
python -I {toxinidir}/tests/manage.py migrate

0 commit comments

Comments
 (0)