Merge branch 'develop' into relative_stake

This commit is contained in:
Matthias
2020-01-05 12:55:55 +01:00
12 changed files with 89 additions and 45 deletions

View File

@@ -49,6 +49,7 @@ def test_load_config_missing_attributes(default_conf) -> None:
conf = deepcopy(default_conf)
conf.pop('stake_currency')
conf['runmode'] = RunMode.DRY_RUN
with pytest.raises(ValidationError, match=r".*'stake_currency' is a required property.*"):
validate_config_schema(conf)