PercentChangePairlist should partecipate in regular tests

This commit is contained in:
Matthias
2024-07-27 16:05:59 +02:00
parent 8637f4a70d
commit 283e8045d8
+3 -6
View File
@@ -31,12 +31,9 @@ from tests.conftest import (
) )
# Exclude RemotePairList and PercentVolumePairList from tests. # Exclude RemotePairList from tests.
# They have mandatory parameters, and requires special handling, # It has a mandatory parameter, and requires special handling, which happens in test_remotepairlist.
# which happens in test_remotepairlist and test_percentchangepairlist. TESTABLE_PAIRLISTS = [p for p in AVAILABLE_PAIRLISTS if p not in ["RemotePairList"]]
TESTABLE_PAIRLISTS = [
p for p in AVAILABLE_PAIRLISTS if p not in ["RemotePairList", "PercentChangePairList"]
]
@pytest.fixture(scope="function") @pytest.fixture(scope="function")