stable/tests/strategy/strats/failing_strategy.py

10 lines
200 B
Python

# The strategy which fails to load due to non-existent dependency
import nonexiting_module # noqa
from freqtrade.strategy.interface import IStrategy
class TestStrategyLegacy(IStrategy):
pass