Skip to content

Commit 973641c

Browse files
committed
Re-enable disabled stdio cleanup tests
1 parent 31b5aa1 commit 973641c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/client/test_stdio.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ async def test_basic_child_process_cleanup(self):
251251
Test basic parent-child process cleanup.
252252
Parent spawns a single child process that writes continuously to a file.
253253
"""
254-
return
255254
# Create a marker file for the child process to write to
256255
with tempfile.NamedTemporaryFile(mode="w", delete=False) as f:
257256
marker_file = f.name
@@ -346,7 +345,6 @@ async def test_nested_process_tree(self):
346345
Test nested process tree cleanup (parent → child → grandchild).
347346
Each level writes to a different file to verify all processes are terminated.
348347
"""
349-
return
350348
# Create temporary files for each process level
351349
with tempfile.NamedTemporaryFile(mode="w", delete=False) as f1:
352350
parent_file = f1.name
@@ -446,7 +444,6 @@ async def test_early_parent_exit(self):
446444
Tests the race condition where parent might die during our termination
447445
sequence but we can still clean up the children via the process group.
448446
"""
449-
return
450447
# Create a temporary file for the child
451448
with tempfile.NamedTemporaryFile(mode="w", delete=False) as f:
452449
marker_file = f.name

0 commit comments

Comments
 (0)