diff --git a/tests/plugins/test_pairlist.py b/tests/plugins/test_pairlist.py index 31e746d5c..37ebdc58b 100644 --- a/tests/plugins/test_pairlist.py +++ b/tests/plugins/test_pairlist.py @@ -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")