Merge branch 'develop' into feat/short

This commit is contained in:
Matthias
2021-10-30 19:45:19 +02:00
22 changed files with 367 additions and 179 deletions

View File

@@ -209,7 +209,8 @@ def test_export_params(tmpdir):
assert filename.is_file()
content = rapidjson.load(filename.open('r'))
with filename.open('r') as f:
content = rapidjson.load(f)
assert content['strategy_name'] == CURRENT_TEST_STRATEGY
assert 'params' in content
assert "buy" in content["params"]