PercentChangePairlist should partecipate in regular tests

This commit is contained in:
Matthias
2024-07-27 16:05:59 +02:00
parent 8637f4a70d
commit 283e8045d8

View File

@@ -31,12 +31,9 @@ from tests.conftest import (
)
# Exclude RemotePairList and PercentVolumePairList from tests.
# They have mandatory parameters, and requires special handling,
# which happens in test_remotepairlist and test_percentchangepairlist.
TESTABLE_PAIRLISTS = [
p for p in AVAILABLE_PAIRLISTS if p not in ["RemotePairList", "PercentChangePairList"]
]
# Exclude RemotePairList from tests.
# It has a mandatory parameter, and requires special handling, which happens in test_remotepairlist.
TESTABLE_PAIRLISTS = [p for p in AVAILABLE_PAIRLISTS if p not in ["RemotePairList"]]
@pytest.fixture(scope="function")