replace no-log with quiet

Also behavior of the flag has been changed: now it disables logs at all
This commit is contained in:
2021-10-03 01:59:23 +03:00
parent db195391e4
commit 6becd01803
8 changed files with 43 additions and 43 deletions

View File

@ -90,7 +90,7 @@ def configuration(resource_path_root: Path) -> Configuration:
:return: configuration test instance
"""
path = resource_path_root / "core" / "ahriman.ini"
return Configuration.from_path(path=path, architecture="x86_64", logfile=False)
return Configuration.from_path(path=path, architecture="x86_64", quiet=False)
@pytest.fixture