3 lines
263 B
Python
3 lines
263 B
Python
def test_node(repo, node, **kwargs):
|
|
if not node.metadata.get('backups', {}).get('exclude_from_backups', False):
|
|
assert len(node.metadata.get('backups', {}).get('paths', set())) > 0, f'{node.name} has backups configured, but no backup paths defined!'
|