diff --git a/tests/utils.py b/tests/utils.py index bd3b61d7..1793f3e8 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -45,11 +45,11 @@ # PyPy has a performance penalty for this test suite. if platform.python_implementation() == "PyPy": # pragma: no cover - MS *= 5 + MS *= 2 -# asyncio's debug mode has a 10x performance penalty for this test suite. +# asyncio's debug mode has a performance penalty for this test suite. if os.environ.get("PYTHONASYNCIODEBUG"): # pragma: no cover - MS *= 10 + MS *= 2 # Ensure that timeouts are larger than the clock's resolution (for Windows). MS = max(MS, 2.5 * time.get_clock_info("monotonic").resolution)