(self, partial_environ)
| 89 | self.assertEqual(failed_kills, []) |
| 90 | |
| 91 | def _patch_environ(self, partial_environ): |
| 92 | patcher = mock.patch.dict(os.environ, partial_environ) |
| 93 | patcher.start() |
| 94 | self.addCleanup(patcher.stop) |
| 95 | |
| 96 | def _ensure_tensorboard_on_path(self, expected_binary_dir): |
| 97 | """Ensure that `tensorboard(1)` refers to our own binary. |
no test coverage detected