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