(self, exchange)
| 104 | self.only_specific_tests.append(test_file_name) |
| 105 | |
| 106 | def import_files(self, exchange): |
| 107 | properties = list(exchange.has.keys()) |
| 108 | properties.append('loadMarkets') |
| 109 | properties.append('afterConstruct') |
| 110 | if is_sync(): |
| 111 | self.test_files = get_test_files_sync(properties, self.ws_tests) |
| 112 | else: |
| 113 | self.test_files = get_test_files(properties, self.ws_tests) |
| 114 | return True |
| 115 | |
| 116 | def load_credentials_from_env(self, exchange): |
| 117 | exchange_id = exchange.id |
no test coverage detected