(self, testcase: DataDrivenTestCase)
| 852 | |
| 853 | @unittest.skipIf(sys.platform == "win32", "clean up fails on Windows") |
| 854 | def run_case(self, testcase: DataDrivenTestCase) -> None: |
| 855 | with local_sys_path_set(): |
| 856 | self.run_case_inner(testcase) |
| 857 | |
| 858 | def run_case_inner(self, testcase: DataDrivenTestCase) -> None: |
| 859 | extra = [] # Extra command-line args |
nothing calls this directly
no test coverage detected