Improve test by having multistrat.meta file available

This commit is contained in:
Matthias
2022-04-13 06:55:47 +02:00
parent 4ac54a76af
commit f89b64c972
5 changed files with 20 additions and 6 deletions

View File

@@ -168,7 +168,7 @@ def load_and_merge_backtest_result(strategy_name: str, filename: Path, results:
def _get_backtest_files(dirname: Path) -> List[Path]:
return reversed(sorted(dirname.glob('backtest-result-*-[0-9][0-9].json')))
return list(reversed(sorted(dirname.glob('backtest-result-*-[0-9][0-9].json'))))
def get_backtest_resultlist(dirname: Path):