From c10cd5c347b75ebf80d8a31fffb057aaf39db44d Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 1 Apr 2018 13:20:10 -0700 Subject: [PATCH] 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0034b3a..5f6d042 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ __pycache__/ .coverage* !.coveragerc /.cache +/.pytest_cache # shared libs installed by 'setup.py test' /Lib/*.so*