Add fix for bitmart failing test

This commit is contained in:
Matthias
2024-05-28 07:14:25 +02:00
parent 6952bac91f
commit 89d8f27d22

View File

@@ -116,6 +116,9 @@ class TestCCXTExchange:
def test_ccxt_fetch_tickers(self, exchange: EXCHANGE_FIXTURE_TYPE):
exch, exchangename = exchange
if exchangename in ("bitmart"):
# TODO: Remove once https://github.com/ccxt/ccxt/issues/22631 is fixed.
pytest.skip("Bitmart is unstable here at the moment")
pair = EXCHANGES[exchangename]["pair"]
tickers = exch.get_tickers()