mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-25 14:37:59 +01:00
Ignore virtual environment
This commit is contained in:
parent
9916ad2e67
commit
7199d47395
2 changed files with 6 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -16,6 +16,9 @@ Thumbs.db
|
||||||
# Python cache.
|
# Python cache.
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|
||||||
|
# Virtual environment.
|
||||||
|
venv/
|
||||||
|
|
||||||
# PyCharm project.
|
# PyCharm project.
|
||||||
/.idea/
|
/.idea/
|
||||||
*.iml
|
*.iml
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -16,7 +16,9 @@ deps =
|
||||||
pytest
|
pytest
|
||||||
|
|
||||||
[pytest]
|
[pytest]
|
||||||
addopts = --ignore tests/test_fetchers.py
|
addopts =
|
||||||
|
--ignore venv
|
||||||
|
--ignore tests/test_fetchers.py
|
||||||
|
|
||||||
[testenv:flake]
|
[testenv:flake]
|
||||||
commands = flake8 fimfarchive tests
|
commands = flake8 fimfarchive tests
|
||||||
|
|
Loading…
Reference in a new issue