We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cf39d9 commit bd3a3beCopy full SHA for bd3a3be
tests/test_imports.py
@@ -34,13 +34,14 @@ def test_web___all__(pytester: pytest.Pytester) -> None:
34
35
_TARGET_TIMINGS_BY_PYTHON_VERSION = {
36
"3.12": (
37
- # 3.12 is expected to be a bit slower due to performance trade-offs,
+ # 3.12+ is expected to be a bit slower due to performance trade-offs,
38
# and even slower under pytest-xdist, especially in CI
39
_XDIST_WORKER_COUNT * 100 * (1 if _IS_CI_ENV else 1.53)
40
if _IS_XDIST_RUN
41
else 250
42
),
43
}
44
+_TARGET_TIMINGS_BY_PYTHON_VERSION["3.13"] = _TARGET_TIMINGS_BY_PYTHON_VERSION["3.12"]
45
46
47
@pytest.mark.internal
0 commit comments