From 56022bcd023b10de355349dc68c8f5357826c1b8 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 16 Jul 2018 14:01:38 -0700 Subject: [PATCH] Add new Pytest cache directory to gitignore (#244) 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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9a49a38..4a94d64 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,6 @@ dist docs/_build __pycache__ .coverage +.pytest_cache/ .tox .idea -- 2.42.0.windows.2