2020-11-13 11:36:52 +00:00
|
|
|
def test_node(repo, node, **kwargs):
|
2021-02-18 14:21:27 +00:00
|
|
|
if not node.has_bundle('backup-client'):
|
2020-11-13 20:56:15 +00:00
|
|
|
return
|
|
|
|
|
2021-02-18 17:12:25 +00:00
|
|
|
if node.metadata.get('backups/exclude_from_backups', False):
|
2020-11-13 20:56:15 +00:00
|
|
|
return
|
|
|
|
|
2021-02-18 17:12:25 +00:00
|
|
|
assert len(node.metadata.get('backups/paths', set())) > 0, f'{node.name} has backups configured, but no backup paths defined!'
|