From 7d951ad1f3af2c1e130add74fd0bbec7684a4b73 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 3 Sep 2018 09:33:04 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20version=20control=20Pytest=20ca?= =?UTF-8?q?che?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pytest moved its cache from `./.cache` (which is in our `.gitignore`) to `./.pytest_cache` (which isn’t). It’s annoying having to be careful not to commit it all the time, so this commit makes it ignored. See https://github.com/pytest-dev/pytest/issues/3286 for more context. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0eae6ec00..5ec4a9689 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,7 @@ htmlcov/ .coverage .coverage.* .cache +.pytest_cache coverage.xml test_results.xml *,cover