(self)
| 166 | self.file = file |
| 167 | |
| 168 | def _run(self): |
| 169 | return subprocess.run( |
| 170 | [sys.executable, self.file], |
| 171 | env=self.env, |
| 172 | **self.SUBPROCESS_ARGS, |
| 173 | ) |
| 174 | |
| 175 | # Helper function mimicking pytest.raises for subprocess call |
| 176 | def _expect_error( |
no test coverage detected