Skip to content

Commit e845e41

Browse files
committed
Skip unstable asyncio handle baseline on Windows
1 parent 4fa1d10 commit e845e41

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/test_process.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,9 @@ async def main(n):
484484

485485
@unittest.skipIf(SKIP_PSUTIL, "We don't have PSUTIL")
486486
def test_subprocess_fd_leak_2(self):
487+
if sys.platform == "win32" and self.is_asyncio_loop():
488+
self.skipTest("process-wide handle count is unstable on Windows")
489+
487490
async def main(n):
488491
for i in range(n):
489492
try:

0 commit comments

Comments
 (0)