(self, test_name)
| 69 | class SupervisorTest(test.TestCase): |
| 70 | |
| 71 | def _test_dir(self, test_name): |
| 72 | test_dir = os.path.join(self.get_temp_dir(), test_name) |
| 73 | if os.path.exists(test_dir): |
| 74 | shutil.rmtree(test_dir) |
| 75 | return test_dir |
| 76 | |
| 77 | def _wait_for_glob(self, pattern, timeout_secs, for_checkpoint=True): |
| 78 | """Wait for a checkpoint file to appear. |
no test coverage detected