Fix tests for use public trades

This commit is contained in:
Joe Schr
2024-02-06 14:33:13 +01:00
parent 1f783b2995
commit aa663b926a
3 changed files with 11 additions and 9 deletions

View File

@@ -820,11 +820,12 @@ def test_download_data_trades(mocker):
"--trading-mode", "futures",
"--dl-trades"
]
with pytest.raises(OperationalException,
match="Trade download not supported for futures."):
pargs = get_args(args)
pargs['config'] = None
start_download_data(pargs)
pargs = get_args(args)
pargs['config'] = None
start_download_data(pargs)
assert dl_mock.call_args[1]['timerange'].starttype == "date"
assert dl_mock.call_count == 2
assert convert_mock.call_count == 2
def test_download_data_data_invalid(mocker):