Run test cases from a specific file. This is needed so that you can use _runner.main() in isolated tests.
(self, filename)
| 103 | self._exit() |
| 104 | |
| 105 | def run_file(self, filename): |
| 106 | # type: (str) -> None |
| 107 | """Run test cases from a specific file. This is needed so that |
| 108 | you can use _runner.main() in isolated tests.""" |
| 109 | self._discover(filename) |
| 110 | self._run_discovered_suites() |
| 111 | |
| 112 | def run_all(self): |
| 113 | # type: () -> None |
no test coverage detected