(self, testcase: DataDrivenTestCase)
| 35 | cache_dir = TemporaryDirectory() |
| 36 | |
| 37 | def run_case(self, testcase: DataDrivenTestCase) -> None: |
| 38 | test_python_evaluation(testcase, os.path.join(self.cache_dir.name, ".mypy_cache")) |
| 39 | |
| 40 | |
| 41 | def test_python_evaluation(testcase: DataDrivenTestCase, cache_dir: str) -> None: |
nothing calls this directly
no test coverage detected