(self, tmp_path_factory)
| 160 | |
| 161 | @pytest.fixture(autouse=True) |
| 162 | def setup_class(self, tmp_path_factory): |
| 163 | file = tmp_path_factory.mktemp("runtime_test_script") |
| 164 | file /= "_runtime_detect.py" |
| 165 | file.write_text(self.SCRIPT) |
| 166 | self.file = file |
| 167 | |
| 168 | def _run(self): |
| 169 | return subprocess.run( |
nothing calls this directly
no test coverage detected