2020-02-15 17:43:11 +00:00
|
|
|
# The strategy which fails to load due to non-existent dependency
|
2020-02-15 02:17:34 +00:00
|
|
|
|
|
|
|
import nonexiting_module # noqa
|
|
|
|
|
2020-02-15 17:43:11 +00:00
|
|
|
from freqtrade.strategy.interface import IStrategy
|
2020-02-15 02:17:34 +00:00
|
|
|
|
|
|
|
|
2020-02-15 17:43:11 +00:00
|
|
|
class TestStrategyLegacy(IStrategy):
|
|
|
|
pass
|