(x)
| 673 | |
| 674 | def test_delete_pipe_while_function_running(): |
| 675 | def func(x): |
| 676 | time.sleep(0.02) |
| 677 | return x |
| 678 | |
| 679 | for i in range(5): |
| 680 | with Pipeline(batch_size=1, num_threads=1, device_id=None) as pipe: |
no outgoing calls
no test coverage detected