(self, tmp_path_factory)
| 149 | |
| 150 | @pytest.fixture(autouse=True) |
| 151 | def setup_class(self, tmp_path_factory): |
| 152 | file = tmp_path_factory.mktemp("runtime_test_script") |
| 153 | file /= "_runtime_detect.py" |
| 154 | file.write_text(self.SCRIPT) |
| 155 | self.file = file |
| 156 | return |
| 157 | |
| 158 | def _run(self): |
| 159 | return subprocess.run( |
nothing calls this directly
no test coverage detected