diff --git a/hooks/test_backup_metadata.py b/hooks/test_backup_metadata.py index 5297212..49b12c2 100644 --- a/hooks/test_backup_metadata.py +++ b/hooks/test_backup_metadata.py @@ -1,8 +1,8 @@ def test_node(repo, node, **kwargs): + if not node.has_bundle('backup-client'): + return + if node.metadata.get('backups', {}).get('exclude_from_backups', False): return - if node.dummy: - return - assert len(node.metadata.get('backups', {}).get('paths', set())) > 0, f'{node.name} has backups configured, but no backup paths defined!'