From 8041bd107531bc8410f5161495f4b7ebd8fae534 Mon Sep 17 00:00:00 2001 From: Nicolas KAROLAK <nicolas@karolak.fr> Date: Tue, 12 Feb 2019 11:42:25 +0100 Subject: [PATCH] backups test: use info instead of warning for disabled --- tests/test_backup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_backup.py b/tests/test_backup.py index e52478fc..ca2e4735 100755 --- a/tests/test_backup.py +++ b/tests/test_backup.py @@ -152,8 +152,7 @@ def check_local_backup(path: str) -> bool: latest = os.path.join(backup_folder, "latest") if backup_folder.endswith(".disabled"): # skip if disabled - u.warning("disabled") - all_ok = False + u.info("disabled") elif os.path.exists(latest): # resolve symbolic link latest = os.path.realpath(latest) -- GitLab