(self, *args)
| 105 | return output.getvalue(), error.getvalue() |
| 106 | |
| 107 | def get_env_file(self, *args): |
| 108 | return os.path.join(self.env_dir, *args) |
| 109 | |
| 110 | def get_text_file_contents(self, *args, encoding='utf-8'): |
| 111 | with open(self.get_env_file(*args), 'r', encoding=encoding) as f: |
no test coverage detected