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

@ -14,7 +14,7 @@ def test_call(args: argparse.Namespace, mocker: MockerFixture) -> None:
must call inside lock
"""
args.configuration = Path("")
args.no_log = False
args.quiet = False
mocker.patch("ahriman.application.handlers.Handler.run")
mocker.patch("ahriman.core.configuration.Configuration.from_path")
enter_mock = mocker.patch("ahriman.application.lock.Lock.__enter__")