47 lines
868 B
INI
47 lines
868 B
INI
[tox]
|
|
envlist =
|
|
py3
|
|
linters
|
|
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
sitepackages = False
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
pytest
|
|
pytest-cov
|
|
commands =
|
|
pytest --cov=squirrelbattle/ --cov-report=term-missing squirrelbattle/
|
|
|
|
[testenv:linters]
|
|
deps =
|
|
flake8
|
|
flake8-annotations
|
|
flake8-colors
|
|
flake8-import-order
|
|
flake8-typing-imports
|
|
pep8-naming
|
|
pyflakes
|
|
commands =
|
|
flake8 main.py squirrelbattle
|
|
|
|
[flake8]
|
|
ignore = W503 ANN002 ANN003 ANN101 ANN102 ANN204 ANN205
|
|
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
|