(self)
| 156 | return |
| 157 | |
| 158 | def _run(self): |
| 159 | return subprocess.run( |
| 160 | [sys.executable, self.file], |
| 161 | env=self.env, |
| 162 | **self.SUBPROCESS_ARGS, |
| 163 | ) |
| 164 | |
| 165 | # Helper function mimicing pytest.raises for subprocess call |
| 166 | def _expect_error( |
no test coverage detected