updated ansible-test integration to skip any files in test/integration/targets/ that aren't directories.
Fixes #26007
This commit is contained in:
parent
26fec4f107
commit
b2d88f8b73
1 changed files with 2 additions and 1 deletions
|
@ -254,7 +254,8 @@ def walk_integration_targets():
|
|||
prefixes = load_integration_prefixes()
|
||||
|
||||
for path in paths:
|
||||
yield IntegrationTarget(path, modules, prefixes)
|
||||
if os.path.isdir(path):
|
||||
yield IntegrationTarget(path, modules, prefixes)
|
||||
|
||||
|
||||
def load_integration_prefixes():
|
||||
|
|
Loading…
Reference in a new issue