Flake8 in tests ...

This commit is contained in:
Matthias 2018-08-09 20:17:55 +02:00
parent b008649d79
commit 56768f1a61
2 changed files with 4 additions and 3 deletions

View File

@ -120,7 +120,7 @@ def test_analyze_ticker_default(ticker_history, mocker, caplog) -> None:
)
strategy = DefaultStrategy({})
ret = strategy.analyze_ticker(ticker_history, {'pair': 'ETH/BTC'})
strategy.analyze_ticker(ticker_history, {'pair': 'ETH/BTC'})
assert ind_mock.call_count == 1
assert buy_mock.call_count == 1
assert buy_mock.call_count == 1
@ -130,7 +130,7 @@ def test_analyze_ticker_default(ticker_history, mocker, caplog) -> None:
caplog.record_tuples)
caplog.clear()
ret = strategy.analyze_ticker(ticker_history, {'pair': 'ETH/BTC'})
strategy.analyze_ticker(ticker_history, {'pair': 'ETH/BTC'})
# No analysis happens as ta_on_candle is true
assert ind_mock.call_count == 2
assert buy_mock.call_count == 2

View File

@ -174,12 +174,13 @@ def test_strategy_override_ta_on_candle(caplog):
}
resolver = StrategyResolver(config)
assert resolver.strategy.ta_on_candle == True
assert resolver.strategy.ta_on_candle
assert ('freqtrade.strategy.resolver',
logging.INFO,
"Override ta_on_candle 'ta_on_candle' with value in config file: True."
) in caplog.record_tuples
def test_deprecate_populate_indicators(result):
default_location = path.join(path.dirname(path.realpath(__file__)))
resolver = StrategyResolver({'strategy': 'TestStrategyLegacy',