File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change
1
+ Added an ``internal `` pytest marker for tests which should be skipped
2
+ by packagers (use ``-m 'not internal' `` to disable them) -- by :user: `Dreamsorcerer `.
Original file line number Diff line number Diff line change @@ -171,3 +171,4 @@ junit_family=xunit2
171
171
xfail_strict = true
172
172
markers =
173
173
dev_mode: mark test to run in dev mode.
174
+ internal: tests which may cause issues for packagers, but should be run in aiohttp' s CI.
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ def test_web___all__(pytester: pytest.Pytester) -> None:
33
33
}
34
34
35
35
36
+ @pytest .mark .internal
36
37
@pytest .mark .skipif (
37
38
not sys .platform .startswith ("linux" ) or platform .python_implementation () == "PyPy" ,
38
39
reason = "Timing is more reliable on Linux" ,
You can’t perform that action at this time.
0 commit comments