Fix ansible-test handling of integration dir.
parent
dca887a6dc
commit
bda0f6e241
|
@ -216,6 +216,7 @@ class PathMapper(object):
|
|||
:type path: str
|
||||
:rtype: dict[str, str] | None
|
||||
"""
|
||||
dirname = os.path.dirname(path)
|
||||
filename = os.path.basename(path)
|
||||
name, ext = os.path.splitext(filename)
|
||||
|
||||
|
@ -398,6 +399,7 @@ class PathMapper(object):
|
|||
}
|
||||
|
||||
if path.startswith('test/integration/'):
|
||||
if dirname == 'test/integration':
|
||||
if self.prefixes.get(name) == 'network' and ext == '.yaml':
|
||||
return minimal # network integration test playbooks are not used by ansible-test
|
||||
|
||||
|
@ -409,7 +411,7 @@ class PathMapper(object):
|
|||
'windows-integration',
|
||||
'network-integration',
|
||||
):
|
||||
if name == command:
|
||||
if name == command and ext == '.cfg':
|
||||
return {
|
||||
command: self.integration_all_target,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue