Skip to content

Commit e8a799c

Browse files
authored
Adjust tox testing for Wagtail 6.4 (#82)
1 parent 0e8945c commit e8a799c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
- Update tox testing to include Wagtail 6.3
5+
- Update tox testing to include Wagtail 6.3 and 6.4
66
- Add tox testing for Django 5.1
77
- Drop testing around python 3.8
88

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,11 @@ tox
208208
To run tests for a specific environment:
209209

210210
```shell
211-
tox -e python3.12-django5.0-wagtail6.0
211+
tox -e python3.12-django5.0-wagtail5.2
212212
```
213213

214214
To run a single test method in a specific environment:
215215

216216
```shell
217-
tox -e python3.12-django5.0-wagtail6.0 -- tests.test.test_blocks.TestBlocks.test_block_with_features
217+
tox -e python3.12-django5.0-wagtail5.2 -- tests.test.test_blocks.TestBlocks.test_block_with_features
218218
```

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
min_version = 4.22
33

44
envlist =
5-
python{3.9,3.10,3.11}-django4.2-wagtail{5.2,6.2,6.3}
6-
python{3.10,3.11,3.12}-django5.0-wagtail{5.2,6.2,6.3}
7-
python{3.12,3.13}-django5.1-wagtail6.3
5+
python{3.9,3.10,3.11}-django4.2-wagtail{5.2,6.3,6.4}
6+
python{3.10,3.11,3.12}-django5.0-wagtail{5.2,6.3,6.4}
7+
python{3.12,3.13}-django5.1-wagtail{6.3,6.4}
88

99
[gh-actions]
1010
python =
1111
3.9: python3.9
1212
3.10: python3.10
1313
3.11: python3.11
1414
3.12: python3.12
15+
3.13: python3.13
1516

1617

1718
[testenv]
@@ -33,8 +34,8 @@ deps =
3334
django5.1: Django>=5.1,<5.2
3435

3536
wagtail5.2: wagtail>=5.2,<5.3
36-
wagtail6.2: wagtail>=6.2,<6.3
3737
wagtail6.3: wagtail>=6.3,<6.4
38+
wagtail6.4: wagtail>=6.4,<6.5
3839

3940

4041
extras = testing

0 commit comments

Comments
 (0)