squirrel-battle/tox.ini

47 lines
842 B
INI
Raw Normal View History

2020-10-02 13:48:39 +00:00
[tox]
envlist =
py38
2020-10-09 12:34:03 +00:00
py39
2020-10-02 13:48:39 +00:00
linters
skipsdist = True
[testenv]
sitepackages = True
deps =
-r{toxinidir}/requirements.txt
pytest
pytest-cov
commands =
pytest --cov=dungeonbattle/ --cov-report=term-missing dungeonbattle/
[testenv:linters]
deps =
flake8
2020-10-02 14:19:18 +00:00
flake8-annotations
2020-10-02 13:48:39 +00:00
flake8-colors
flake8-typing-imports
pep8-naming
pyflakes
commands =
flake8 main.py dungeonbattle
[flake8]
ignore = W503 ANN002 ANN03 ANN101 ANN102 ANN204
2020-10-02 13:48:39 +00:00
exclude =
.tox,
.git,
venv,
__pycache__,
build,
dist,
*.pyc,
*.egg-info,
.cache,
.eggs
max-complexity = 15
max-line-length = 80
import-order-style = google
application-import-names = flake8
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s