(self, testcase: DataDrivenTestCase)
| 28 | files = daemon_files |
| 29 | |
| 30 | def run_case(self, testcase: DataDrivenTestCase) -> None: |
| 31 | try: |
| 32 | test_daemon(testcase) |
| 33 | finally: |
| 34 | # Kill the daemon if it's still running. |
| 35 | run_cmd("dmypy kill") |
| 36 | |
| 37 | |
| 38 | def test_daemon(testcase: DataDrivenTestCase) -> None: |
nothing calls this directly
no test coverage detected