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 85ffe07 commit f905bc7Copy full SHA for f905bc7
1 file changed
tests/test_proxy_functional.py
@@ -94,11 +94,12 @@ def secure_proxy_url(tls_certificate_pem_path: str) -> Iterator[URL]:
94
# pytest cleanup. A longer delay + multiple gc.collect() passes ensures
95
# the proxy threads finish cleanup before pytest's unraisableexception
96
# plugin collects warnings.
97
+ # TEMPORARY: Using 5 second delay to test if this is the source of leaks
98
if os.name == "nt":
99
import gc
100
import time
101
- time.sleep(0.5)
102
+ time.sleep(5)
103
gc.collect()
104
105
0 commit comments