Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit cd92dbb

Browse files
committed
Test PyTest 7.3 and 7.4 in CI
1 parent cceab23 commit cd92dbb

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ jobs:
7777
- pytest70
7878
- pytest71
7979
- pytest72
80+
- pytest73
81+
- pytest74
8082

8183
steps:
8284
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ for running `unittest` tests.
3131
This plugin maintains compatibility with the PyTest and Python versions listed below:
3232

3333
![Python versions](https://img.shields.io/pypi/pyversions/pytest-unflakable)
34-
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2-blue)
34+
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2%20%7C%207.3%20%7C%207.4-blue)
3535

3636
## Contributing
3737

src/pytest_unflakable/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ for running `unittest` tests.
2222
This plugin maintains compatibility with the PyTest and Python versions listed below:
2323

2424
![Python versions](https://img.shields.io/pypi/pyversions/pytest-unflakable)
25-
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2-blue)
25+
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2%20%7C%207.3%20%7C%207.4-blue)
2626

2727
## Contributing
2828

tox.ini

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = pytest{62,70,71,72},flake8,mypy,pycodestyle
3+
envlist = pytest{62,70,71,72,73,74},flake8,mypy,pycodestyle
44

55
[testenv]
66
extras = dev
@@ -26,6 +26,16 @@ deps =
2626
pytest>=7.2.0,<7.3.0
2727
pytest-xdist==2.5.0
2828

29+
[testenv:pytest73]
30+
deps =
31+
pytest>=7.3.0,<7.4.0
32+
pytest-xdist==2.5.0
33+
34+
[testenv:pytest74]
35+
deps =
36+
pytest>=7.4.0,<7.5.0
37+
pytest-xdist==2.5.0
38+
2939
[testenv:flake8]
3040
commands = flake8 src tests
3141

0 commit comments

Comments
 (0)