Skip to content

Commit 4609c74

Browse files
committed
build: Bump minimum supported pytest version to v8.2.0.
1 parent 0c50db5 commit 4609c74

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

dependencies/default/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Always adjust install_requires in setup.cfg and pytest-min-requirements.txt
22
# when changing runtime dependencies
3-
pytest >= 7.0.0,<9
3+
pytest >= 8.2,<9

dependencies/pytest-min/constraints.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ iniconfig==2.0.0
1111
mock==5.1.0
1212
nose==1.3.7
1313
packaging==23.2
14-
pluggy==1.3.0
14+
pluggy==1.5.0
1515
py==1.11.0
1616
Pygments==2.16.1
17-
pytest==7.0.0
17+
pytest==8.2.0
1818
requests==2.31.0
1919
sortedcontainers==2.4.0
2020
tomli==2.0.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Always adjust install_requires in setup.cfg and requirements.txt
22
# when changing minimum version dependencies
3-
pytest[testing] == 7.0.0
3+
pytest[testing] == 8.2.0

docs/source/reference/changelog.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog
44

55
0.24.0 (UNRELEASED)
66
===================
7+
- BREAKING: Updated minimum supported pytest version to v8.2.0
78
- Adds an optional `loop_scope` keyword argument to `pytest.mark.asyncio`. This argument controls which event loop is used to run the marked async test. `#706`_, `#871 <https://github.com/pytest-dev/pytest-asyncio/pull/871>`_
89
- Deprecates the optional `scope` keyword argument to `pytest.mark.asyncio` for API consistency with ``pytest_asyncio.fixture``. Users are encouraged to use the `loop_scope` keyword argument, which does exactly the same.
910
- Raises an error when passing `scope` or `loop_scope` as a positional argument to ``@pytest.mark.asyncio``. `#812 <https://github.com/pytest-dev/pytest-asyncio/issues/812>`_

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ include_package_data = True
4141

4242
# Always adjust requirements.txt and pytest-min-requirements.txt when changing runtime dependencies
4343
install_requires =
44-
pytest >= 7.0.0,<9
44+
pytest >= 8.2,<9
4545

4646
[options.extras_require]
4747
testing =

tests/test_is_async_test.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@ def pytest_collection_modifyitems(items):
7474
)
7575
)
7676
result = pytester.runpytest("--asyncio-mode=strict")
77-
if pytest.version_tuple < (7, 2):
78-
# Probably related to https://github.com/pytest-dev/pytest/pull/10012
79-
result.assert_outcomes(failed=1)
80-
elif pytest.version_tuple < (8,):
77+
if pytest.version_tuple < (8,):
8178
result.assert_outcomes(skipped=1)
8279
else:
8380
result.assert_outcomes(failed=1)

0 commit comments

Comments
 (0)