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

Commit ac1f21c

Browse files
committed
Officially support PyTest 7.2
1 parent 880b799 commit ac1f21c

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,40 +70,52 @@ jobs:
7070
- py37-pytest62
7171
- py37-pytest70
7272
- py37-pytest71
73+
- py37-pytest72
7374
- py38-pytest62
7475
- py38-pytest70
7576
- py38-pytest71
77+
- py38-pytest72
7678
- py39-pytest62
7779
- py39-pytest70
7880
- py39-pytest71
81+
- py39-pytest72
7982
- py310-pytest62
8083
- py310-pytest70
8184
- py310-pytest71
85+
- py310-pytest72
8286
include:
8387
- tox_env: "py37-pytest62"
8488
python: "3.7"
8589
- tox_env: "py37-pytest70"
8690
python: "3.7"
8791
- tox_env: "py37-pytest71"
8892
python: "3.7"
93+
- tox_env: "py37-pytest72"
94+
python: "3.7"
8995
- tox_env: "py38-pytest62"
9096
python: "3.8"
9197
- tox_env: "py38-pytest70"
9298
python: "3.8"
9399
- tox_env: "py38-pytest71"
94100
python: "3.8"
101+
- tox_env: "py38-pytest72"
102+
python: "3.8"
95103
- tox_env: "py39-pytest62"
96104
python: "3.9"
97105
- tox_env: "py39-pytest70"
98106
python: "3.9"
99107
- tox_env: "py39-pytest71"
100108
python: "3.9"
109+
- tox_env: "py39-pytest72"
110+
python: "3.9"
101111
- tox_env: "py310-pytest62"
102112
python: "3.10"
103113
- tox_env: "py310-pytest70"
104114
python: "3.10"
105115
- tox_env: "py310-pytest71"
106116
python: "3.10"
117+
- tox_env: "py310-pytest72"
118+
python: "3.10"
107119

108120
steps:
109121
- uses: actions/checkout@v3

README.md

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

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

3838
## Contributing
3939

tox.ini

Lines changed: 21 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 = py37-pytest{62,70,71},py38-pytest{62,70,71},py39-pytest{62,70,71},py310-pytest{62,70,71},flake8,mypy,pycodestyle
3+
envlist = py37-pytest{62,70,71,72},py38-pytest{62,70,71,72},py39-pytest{62,70,71,72},py310-pytest{62,70,71,72},flake8,mypy,pycodestyle
44

55
[testenv]
66
extras = dev
@@ -21,6 +21,11 @@ deps =
2121
pytest>=7.1.0,<7.2.0
2222
pytest-xdist==2.5.0
2323

24+
[testenv:py37-pytest72]
25+
deps =
26+
pytest>=7.2.0,<7.3.0
27+
pytest-xdist==2.5.0
28+
2429
[testenv:py38-pytest62]
2530
deps =
2631
pytest>=6.2.0,<6.3.0
@@ -36,6 +41,11 @@ deps =
3641
pytest>=7.1.0,<7.2.0
3742
pytest-xdist==2.5.0
3843

44+
[testenv:py38-pytest72]
45+
deps =
46+
pytest>=7.2.0,<7.3.0
47+
pytest-xdist==2.5.0
48+
3949
[testenv:py39-pytest62]
4050
deps =
4151
pytest>=6.2.0,<6.3.0
@@ -51,6 +61,11 @@ deps =
5161
pytest>=7.1.0,<7.2.0
5262
pytest-xdist==2.5.0
5363

64+
[testenv:py39-pytest72]
65+
deps =
66+
pytest>=7.2.0,<7.3.0
67+
pytest-xdist==2.5.0
68+
5469
[testenv:py310-pytest62]
5570
deps =
5671
pytest>=6.2.0,<6.3.0
@@ -66,6 +81,11 @@ deps =
6681
pytest>=7.1.0,<7.2.0
6782
pytest-xdist==2.5.0
6883

84+
[testenv:py310-pytest72]
85+
deps =
86+
pytest>=7.2.0,<7.3.0
87+
pytest-xdist==2.5.0
88+
6989
[testenv:flake8]
7090
commands = flake8 src tests
7191

0 commit comments

Comments
 (0)