()
| 21 | |
| 22 | |
| 23 | def test_cluster_create_client(): |
| 24 | with LocalCluster() as cluster: |
| 25 | client = cluster.client() |
| 26 | job = Job() |
| 27 | job.program(["uname"]) |
| 28 | client.submit(job) |
| 29 | |
| 30 | |
| 31 | def test_cluster_add_worker(): |
nothing calls this directly
no test coverage detected