mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix compile skip path handling for targeted tests.
This commit is contained in:
parent
d22f7b4919
commit
bee58fe890
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ def command_compile(args):
|
||||||
if skip_paths:
|
if skip_paths:
|
||||||
cmd += ['-x', '|'.join(skip_paths)]
|
cmd += ['-x', '|'.join(skip_paths)]
|
||||||
|
|
||||||
cmd += [target.path for target in include]
|
cmd += [target.path if target.path == '.' else './%s' % target.path for target in include]
|
||||||
|
|
||||||
version_commands.append((version, cmd))
|
version_commands.append((version, cmd))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue