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.
pull/62114/head
Matt Clay 5 years ago committed by GitHub
parent 0f52b18f3f
commit f110abb806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save