Add initial rpc test

This commit is contained in:
Matthias
2022-02-23 07:40:15 +01:00
parent d07a24a54f
commit 62c42a73e2
4 changed files with 177 additions and 34 deletions

View File

@@ -95,6 +95,7 @@ def test_enter_exit_side(fee, is_short):
)
assert trade.enter_side == enter_side
assert trade.exit_side == exit_side
assert trade.trade_direction == 'short' if is_short else 'long'
@pytest.mark.usefixtures("init_persistence")