Fix ansible-test to ignore tests/output/
. (#62084)
The `test/results/` directory for Ansible test output was already ignored when not using git. When Ansible Collections were switched to `tests/output/` the ignore entry was previously overlooked.
This commit is contained in:
parent
0f52b18f3f
commit
f110abb806
2 changed files with 5 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- ansible-test now properly ignores the ``tests/output//`` directory when not using git
|
|
@ -48,6 +48,9 @@ class UnversionedSource(SourceProvider):
|
|||
'cache',
|
||||
'output',
|
||||
),
|
||||
'tests': (
|
||||
'output',
|
||||
),
|
||||
'docs/docsite': (
|
||||
'_build',
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue