Merge branch 'master' into issue-170

This commit is contained in:
notbalanced 2019-09-22 20:50:34 -04:00 committed by GitHub
commit f4e40fc43d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
85 changed files with 2004 additions and 5773 deletions

View file

@ -225,7 +225,7 @@ def check_journal_content(context, text, journal_name="default"):
@then('journal "{journal_name}" should not exist')
def journal_doesnt_exist(context, journal_name="default"):
with open(install.CONFIG_FILE_PATH) as config_file:
config = yaml.load(config_file)
config = yaml.load(config_file, Loader=yaml.FullLoader)
journal_path = config['journals'][journal_name]
assert not os.path.exists(journal_path)