(self)
| 211 | return py_exe |
| 212 | |
| 213 | def get_py_exe(self): |
| 214 | if not self.py_exe: |
| 215 | self.py_exe = self.find_py() |
| 216 | return self.py_exe |
| 217 | |
| 218 | def run_py(self, args, env=None, allow_fail=False, expect_returncode=0, argv=None): |
| 219 | if not self.py_exe: |
no test coverage detected