From 283e8045d82902bd5d7214b25ece714e9855d457 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 27 Jul 2024 16:05:59 +0200 Subject: [PATCH] PercentChangePairlist should partecipate in regular tests --- tests/plugins/test_pairlist.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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")