From c55c1696502be81d2a930536086f0f236ccc7b17 Mon Sep 17 00:00:00 2001
From: Nicolas KAROLAK <nicolas@karolak.fr>
Date: Tue, 12 Feb 2019 11:40:25 +0100
Subject: [PATCH] backups test: skip disabled

---
 tests/test_backup.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/test_backup.py b/tests/test_backup.py
index 7f21ece9..e52478fc 100755
--- a/tests/test_backup.py
+++ b/tests/test_backup.py
@@ -150,7 +150,11 @@ def check_local_backup(path: str) -> bool:
 
     all_ok = True
     latest = os.path.join(backup_folder, "latest")
-    if os.path.exists(latest):
+    if backup_folder.endswith(".disabled"):
+        # skip if disabled
+        u.warning("disabled")
+        all_ok = False
+    elif os.path.exists(latest):
         # resolve symbolic link
         latest = os.path.realpath(latest)
         latest_date = os.path.basename(latest)
-- 
GitLab