We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292d961 commit ec2be05Copy full SHA for ec2be05
CHANGES/8299.packaging.rst
@@ -0,0 +1,2 @@
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`.
setup.cfg
@@ -171,3 +171,4 @@ junit_family=xunit2
171
xfail_strict = true
172
markers =
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.
tests/test_imports.py
@@ -33,6 +33,7 @@ def test_web___all__(pytester: pytest.Pytester) -> None:
33
}
34
35
36
+@pytest.mark.internal
37
@pytest.mark.skipif(
38
not sys.platform.startswith("linux") or platform.python_implementation() == "PyPy",
39
reason="Timing is more reliable on Linux",
0 commit comments