File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments