Skip to content

Commit 95fd902

Browse files
authored
remove example_setup from all playbooks list
example setup not wanted in all playbooks list so we filter it out now.
1 parent 85b2093 commit 95fd902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
def find_all_test_playbooks():
1313
for playbook in TEST_PLAYBOOKS_PATH.listdir(sort=True):
1414
playbook = playbook.basename
15-
if playbook.endswith('.yml'):
15+
if playbook.endswith('.yml') and not playbook.startswith('example_'):
1616
yield playbook.replace('.yml', '')
1717

1818

0 commit comments

Comments
 (0)