()
| 31 | |
| 32 | |
| 33 | def test_shutdown(): |
| 34 | g = Cluster(initialize_head=False) |
| 35 | node = g.add_node() |
| 36 | node2 = g.add_node() |
| 37 | g.shutdown() |
| 38 | assert not any(n.any_processes_alive() for n in [node, node2]) |
| 39 | |
| 40 | |
| 41 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…