File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ repos:
118
118
additional_dependencies :
119
119
- types-docutils
120
120
- lxml # dep of `--txt-report`, `--cobertura-xml-report` & `--html-report`
121
- - pytest
121
+ - pytest >= 8.4.0
122
122
- pytest_codspeed
123
123
- Sphinx >= 5.3.0
124
124
- sphinxcontrib-spelling
@@ -134,7 +134,7 @@ repos:
134
134
additional_dependencies :
135
135
- types-docutils
136
136
- lxml # dep of `--txt-report`, `--cobertura-xml-report` & `--html-report`
137
- - pytest
137
+ - pytest >= 8.4.0
138
138
- pytest_codspeed
139
139
- Sphinx >= 5.3.0
140
140
- sphinxcontrib-spelling
Original file line number Diff line number Diff line change 1
1
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
4
3
pytest-codspeed==3.2.0
5
4
pytest-cov==6.0.0
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def chained_call(
58
58
59
59
60
60
@pytest .fixture
61
- def cls ( # type: ignore[misc]
61
+ def cls (
62
62
request : pytest .FixtureRequest ,
63
63
multidict_module : ModuleType ,
64
64
) -> Callable [..., MultiMapping [int | str ] | MutableMultiMapping [int | str ]]:
@@ -708,7 +708,7 @@ class TestMultiDict(BaseMultiDictTest):
708
708
("MultiDict" , "MultiDictProxy" ),
709
709
],
710
710
)
711
- def cls ( # type: ignore[misc]
711
+ def cls (
712
712
self ,
713
713
request : pytest .FixtureRequest ,
714
714
multidict_module : ModuleType ,
@@ -800,7 +800,7 @@ class TestCIMultiDict(BaseMultiDictTest):
800
800
("CIMultiDict" , "CIMultiDictProxy" ),
801
801
],
802
802
)
803
- def cls ( # type: ignore[misc]
803
+ def cls (
804
804
self ,
805
805
request : pytest .FixtureRequest ,
806
806
multidict_module : ModuleType ,
You can’t perform that action at this time.
0 commit comments