Merge pull request #2331 from freqtrade/testdata_cleanup
Remove unused test-data
This commit is contained in:
commit
2c0d2c1532
@ -108,7 +108,7 @@ def test_load_trades(default_conf, mocker):
|
||||
|
||||
|
||||
def test_combine_tickers_with_mean(testdatadir):
|
||||
pairs = ["ETH/BTC", "XLM/BTC"]
|
||||
pairs = ["ETH/BTC", "ADA/BTC"]
|
||||
tickers = load_data(datadir=testdatadir,
|
||||
pairs=pairs,
|
||||
ticker_interval='5m'
|
||||
@ -116,7 +116,7 @@ def test_combine_tickers_with_mean(testdatadir):
|
||||
df = combine_tickers_with_mean(tickers)
|
||||
assert isinstance(df, DataFrame)
|
||||
assert "ETH/BTC" in df.columns
|
||||
assert "XLM/BTC" in df.columns
|
||||
assert "ADA/BTC" in df.columns
|
||||
assert "mean" in df.columns
|
||||
|
||||
|
||||
|
@ -53,11 +53,11 @@ def test_init_plotscript(default_conf, mocker, testdatadir):
|
||||
assert "trades" in ret
|
||||
assert "pairs" in ret
|
||||
|
||||
default_conf['pairs'] = ["POWR/BTC", "XLM/BTC"]
|
||||
default_conf['pairs'] = ["POWR/BTC", "ADA/BTC"]
|
||||
ret = init_plotscript(default_conf)
|
||||
assert "tickers" in ret
|
||||
assert "POWR/BTC" in ret["tickers"]
|
||||
assert "XLM/BTC" in ret["tickers"]
|
||||
assert "ADA/BTC" in ret["tickers"]
|
||||
|
||||
|
||||
def test_add_indicators(default_conf, testdatadir, caplog):
|
||||
@ -247,7 +247,7 @@ def test_generate_profit_graph(testdatadir):
|
||||
filename = testdatadir / "backtest-result_test.json"
|
||||
trades = load_backtest_data(filename)
|
||||
timerange = TimeRange.parse_timerange("20180110-20180112")
|
||||
pairs = ["POWR/BTC", "XLM/BTC"]
|
||||
pairs = ["POWR/BTC", "ADA/BTC"]
|
||||
|
||||
tickers = history.load_data(datadir=testdatadir,
|
||||
pairs=pairs,
|
||||
|
1
tests/testdata/ADA_BTC-1m.json
vendored
1
tests/testdata/ADA_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/DASH_BTC-1m.json
vendored
1
tests/testdata/DASH_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/ETC_BTC-1m.json
vendored
1
tests/testdata/ETC_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/ETH_BTC-1m.json
vendored
1
tests/testdata/ETH_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/LTC_BTC-1m.json
vendored
1
tests/testdata/LTC_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/NXT_BTC-1m.json
vendored
1
tests/testdata/NXT_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/POWR_BTC-1m.json
vendored
1
tests/testdata/POWR_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/XLM_BTC-1m.json
vendored
1
tests/testdata/XLM_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/XMR_BTC-1m.json
vendored
1
tests/testdata/XMR_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
1
tests/testdata/ZEC_BTC-1m.json
vendored
1
tests/testdata/ZEC_BTC-1m.json
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user