Add new Pytest cache directory to gitignore

Starting with Pytest 3.4.0 (2018-01-30), Pytest's cache directory was
renamed to .pytest_cache.

https://docs.pytest.org/en/latest/changelog.html#pytest-3-4-0-2018-01-30

> The default cache directory has been renamed from .cache to
> .pytest_cache after community feedback that the name .cache did not
> make it clear that it was used by pytest.
This commit is contained in:
Jon Dufresne 2018-04-04 04:41:51 -07:00
parent ca850a6334
commit 86f3971252

1
.gitignore vendored
View File

@ -32,6 +32,7 @@ htmlcov/
.tox/ .tox/
.coverage .coverage
.cache .cache
.pytest_cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml