From ff83b72b6867e39a6b0d9a4665b9b1fcc9e633c6 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Sun, 30 Jun 2019 02:47:57 +0200 Subject: [PATCH] Ignore more venv names and mypy and pytest caches --- .gitignore | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9b3eefe9..9148845f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,6 @@ __pycache__/ # Distribution / packaging .Python -env/ build/ develop-eggs/ dist/ @@ -45,7 +44,8 @@ htmlcov/ .pytest_cache nosetests.xml coverage.xml -*,cover +*.cover +.pytest_cache/ # Translations *.mo @@ -60,6 +60,14 @@ docs/_build/ # PyBuilder target/ +# VirtualEnv +.env +.venv +env/ +venv/ + +# Typing +.mypy_cache/ /tests/django.sqlite @@ -82,4 +90,3 @@ target/ *.sqlite3 .vscode .mypy_cache -/.venv