(self, func, *args, **kwargs)
| 97 | return os.path.join(env_dir, self.bindir, self.exe) |
| 98 | |
| 99 | def run_with_capture(self, func, *args, **kwargs): |
| 100 | with captured_stdout() as output: |
| 101 | with captured_stderr() as error: |
| 102 | func(*args, **kwargs) |
| 103 | return output.getvalue(), error.getvalue() |
| 104 | |
| 105 | def get_env_file(self, *args): |
| 106 | return os.path.join(self.env_dir, *args) |
no test coverage detected