Try a pool that cannot execute all submitted jobs at once.
()
| 53 | |
| 54 | |
| 55 | def test_simple_concurrency(): |
| 56 | """Try a pool that cannot execute all submitted jobs at once.""" |
| 57 | pool = make_pool(1, 1) |
| 58 | |
| 59 | for i in range(3): |
| 60 | pool.put(FakeTarPartition(1)) |
| 61 | |
| 62 | pool.join() |
| 63 | |
| 64 | |
| 65 | def test_fault_midstream(): |
nothing calls this directly
no test coverage detected