mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 11:51:19 +00:00
test: update funding_rate_migration test
This commit is contained in:
@@ -5,13 +5,14 @@ from freqtrade.util.migrations import migrate_funding_fee_timeframe
|
|||||||
|
|
||||||
def test_migrate_funding_rate_timeframe(default_conf_usdt, tmp_path, testdatadir):
|
def test_migrate_funding_rate_timeframe(default_conf_usdt, tmp_path, testdatadir):
|
||||||
copytree(testdatadir / "futures", tmp_path / "futures")
|
copytree(testdatadir / "futures", tmp_path / "futures")
|
||||||
file_4h = tmp_path / "futures" / "XRP_USDT_USDT-4h-funding_rate.feather"
|
file_30m = tmp_path / "futures" / "XRP_USDT_USDT-30m-funding_rate.feather"
|
||||||
file_8h = tmp_path / "futures" / "XRP_USDT_USDT-8h-funding_rate.feather"
|
file_1h_fr = tmp_path / "futures" / "XRP_USDT_USDT-1h-funding_rate.feather"
|
||||||
|
file_1h_fr = tmp_path / "futures" / "XRP_USDT_USDT-1h-funding_rate.feather"
|
||||||
file_1h = tmp_path / "futures" / "XRP_USDT_USDT-1h-futures.feather"
|
file_1h = tmp_path / "futures" / "XRP_USDT_USDT-1h-futures.feather"
|
||||||
file_8h.rename(file_4h)
|
file_1h_fr.rename(file_30m)
|
||||||
assert file_1h.exists()
|
assert file_1h.exists()
|
||||||
assert file_4h.exists()
|
assert file_30m.exists()
|
||||||
assert not file_8h.exists()
|
assert not file_1h_fr.exists()
|
||||||
|
|
||||||
default_conf_usdt["datadir"] = tmp_path
|
default_conf_usdt["datadir"] = tmp_path
|
||||||
|
|
||||||
@@ -22,7 +23,7 @@ def test_migrate_funding_rate_timeframe(default_conf_usdt, tmp_path, testdatadir
|
|||||||
|
|
||||||
migrate_funding_fee_timeframe(default_conf_usdt, None)
|
migrate_funding_fee_timeframe(default_conf_usdt, None)
|
||||||
|
|
||||||
assert not file_4h.exists()
|
assert not file_30m.exists()
|
||||||
assert file_8h.exists()
|
assert file_1h_fr.exists()
|
||||||
# futures files is untouched.
|
# futures files is untouched.
|
||||||
assert file_1h.exists()
|
assert file_1h.exists()
|
||||||
|
|||||||
Reference in New Issue
Block a user