diff --git a/tests/test_backup.py b/tests/test_backup.py index 1f7e3faf1d950a4c9c3c2da0c5ebc0fc859b34f4..cbd68fdf2356be9d4424607bd6c313235ef3d40f 100755 --- a/tests/test_backup.py +++ b/tests/test_backup.py @@ -73,6 +73,7 @@ def check_local_backup(path): if os.path.isdir(d): subd = os.path.join(path, d) latest = os.path.join(subd, 'latest') + print('Checking %s' % latest) if os.path.exists(latest): mtime = os.path.getmtime(latest) d = datetime.fromtimestamp(mtime) @@ -97,6 +98,7 @@ def check_local_backups(paths): folders = paths.split(',') for f in folders: if f not in blacklist: + print('Checking folder %s' % f) all_ok = min(check_local_backup(f), all_ok) return all_ok