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