We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27f233 commit a893c3eCopy full SHA for a893c3e
.github/workflows/test.yml
@@ -54,6 +54,12 @@ jobs:
54
PYTEST_MAJOR_VERSION: 7
55
PYTEST_PLUGINS: pytest_github_actions_annotate_failures
56
57
+ - name: Run tests with PyTest 8
58
+ run: tox
59
+ env:
60
+ PYTEST_MAJOR_VERSION: 8
61
+ PYTEST_PLUGINS: pytest_github_actions_annotate_failures
62
+
63
post-test:
64
name: All tests passed
65
if: always()
tox.ini
@@ -20,7 +20,7 @@ PYTEST_MAJOR_VERSION =
20
extras = test
21
deps =
22
pytest6: pytest>=6.0.0,<7.0.0
23
- pytest7: pytest>=7.0.0,<7.4.0
+ pytest7: pytest>=7.0.0,<8.0.0
24
pytest8: pytest>=8.0.0,<9.0.0
25
26
commands = {envpython} -m pytest {posargs}
0 commit comments