why does flake8 pass locally?

This commit is contained in:
werkkrew 2021-03-13 19:40:03 -05:00
parent f8a76ca161
commit 98e12892ca

View File

@ -473,7 +473,7 @@ def test_format_results(hyperopt):
@pytest.mark.parametrize("spaces, expected_results", [ @pytest.mark.parametrize("spaces, expected_results", [
(['buy'], (['buy'],
{'buy': True, 'sell': False, 'roi': False, 'stoploss': False, 'trailing': False, {'buy': True, 'sell': False, 'roi': False, 'stoploss': False, 'trailing': False,
'dynamic-roi': False}), 'dynamic-roi': False}),
(['sell'], (['sell'],
{'buy': False, 'sell': True, 'roi': False, 'stoploss': False, 'trailing': False, {'buy': False, 'sell': True, 'roi': False, 'stoploss': False, 'trailing': False,
@ -491,7 +491,7 @@ def test_format_results(hyperopt):
{'buy': False, 'sell': False, 'roi': False, 'stoploss': False, 'trailing': False, {'buy': False, 'sell': False, 'roi': False, 'stoploss': False, 'trailing': False,
'dynamic-roi': True}), 'dynamic-roi': True}),
(['buy', 'sell', 'roi', 'stoploss'], (['buy', 'sell', 'roi', 'stoploss'],
{'buy': True, 'sell': True, 'roi': True, 'stoploss': True, 'trailing': False, {'buy': True, 'sell': True, 'roi': True, 'stoploss': True, 'trailing': False,
'dynamic-roi': False}), 'dynamic-roi': False}),
(['buy', 'sell', 'roi', 'stoploss', 'trailing'], (['buy', 'sell', 'roi', 'stoploss', 'trailing'],
{'buy': True, 'sell': True, 'roi': True, 'stoploss': True, 'trailing': True, {'buy': True, 'sell': True, 'roi': True, 'stoploss': True, 'trailing': True,