Skip to content

Commit b23c192

Browse files
authored
Bump pytest to 8.4.0 (#1169)
1 parent 87c76b8 commit b23c192

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ repos:
118118
additional_dependencies:
119119
- types-docutils
120120
- lxml # dep of `--txt-report`, `--cobertura-xml-report` & `--html-report`
121-
- pytest
121+
- pytest >= 8.4.0
122122
- pytest_codspeed
123123
- Sphinx >= 5.3.0
124124
- sphinxcontrib-spelling
@@ -134,7 +134,7 @@ repos:
134134
additional_dependencies:
135135
- types-docutils
136136
- lxml # dep of `--txt-report`, `--cobertura-xml-report` & `--html-report`
137-
- pytest
137+
- pytest >= 8.4.0
138138
- pytest_codspeed
139139
- Sphinx >= 5.3.0
140140
- sphinxcontrib-spelling

requirements/pytest.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
objgraph==3.6.2
2-
pytest==8.3.5; platform_python_implementation != 'PyPy'
3-
pytest < 8.2.2; platform_python_implementation == 'PyPy' # FIXME: Drop conditionals once the regression is gone. See https://github.com/pytest-dev/pytest/issues/13312.
2+
pytest==8.4.0
43
pytest-codspeed==3.2.0
54
pytest-cov==6.0.0

tests/test_multidict.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def chained_call(
5858

5959

6060
@pytest.fixture
61-
def cls( # type: ignore[misc]
61+
def cls(
6262
request: pytest.FixtureRequest,
6363
multidict_module: ModuleType,
6464
) -> Callable[..., MultiMapping[int | str] | MutableMultiMapping[int | str]]:
@@ -708,7 +708,7 @@ class TestMultiDict(BaseMultiDictTest):
708708
("MultiDict", "MultiDictProxy"),
709709
],
710710
)
711-
def cls( # type: ignore[misc]
711+
def cls(
712712
self,
713713
request: pytest.FixtureRequest,
714714
multidict_module: ModuleType,
@@ -800,7 +800,7 @@ class TestCIMultiDict(BaseMultiDictTest):
800800
("CIMultiDict", "CIMultiDictProxy"),
801801
],
802802
)
803-
def cls( # type: ignore[misc]
803+
def cls(
804804
self,
805805
request: pytest.FixtureRequest,
806806
multidict_module: ModuleType,

0 commit comments

Comments
 (0)