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:
Matt Clay 2019-09-10 15:49:40 -07:00 committed by GitHub
parent 0f52b18f3f
commit f110abb806
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- ansible-test now properly ignores the ``tests/output//`` directory when not using git

View file

@ -48,6 +48,9 @@ class UnversionedSource(SourceProvider):
'cache',
'output',
),
'tests': (
'output',
),
'docs/docsite': (
'_build',
),