Ignore more venv names and mypy and pytest caches

This commit is contained in:
Christoph Zwerschke 2019-06-30 02:47:57 +02:00 committed by Mel van Londen
parent 6a0afb08a1
commit ff83b72b68

13
.gitignore vendored
View File

@ -10,7 +10,6 @@ __pycache__/
# Distribution / packaging # Distribution / packaging
.Python .Python
env/
build/ build/
develop-eggs/ develop-eggs/
dist/ dist/
@ -45,7 +44,8 @@ htmlcov/
.pytest_cache .pytest_cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover *.cover
.pytest_cache/
# Translations # Translations
*.mo *.mo
@ -60,6 +60,14 @@ docs/_build/
# PyBuilder # PyBuilder
target/ target/
# VirtualEnv
.env
.venv
env/
venv/
# Typing
.mypy_cache/
/tests/django.sqlite /tests/django.sqlite
@ -82,4 +90,3 @@ target/
*.sqlite3 *.sqlite3
.vscode .vscode
.mypy_cache .mypy_cache
/.venv