()
| 28 | |
| 29 | |
| 30 | def _run_test(): |
| 31 | try: |
| 32 | tmp = mp.get_context("spawn") |
| 33 | except RuntimeError: |
| 34 | tmp = mp |
| 35 | p = tmp.Process(target=_main) |
| 36 | p.start() |
| 37 | p.join() |
| 38 | |
| 39 | |
| 40 | class TestImportLock(unittest.TestCase): |
no test coverage detected
searching dependent graphs…