46 lines
844 B
INI
46 lines
844 B
INI
|
[tox]
|
||
|
envlist =
|
||
|
py3
|
||
|
linters
|
||
|
|
||
|
skipsdist = True
|
||
|
|
||
|
[testenv]
|
||
|
sitepackages = False
|
||
|
deps =
|
||
|
-r{toxinidir}/requirements.txt
|
||
|
pytest
|
||
|
pytest-cov
|
||
|
commands =
|
||
|
pytest --cov=squinnondation/ --cov-report=term-missing squinnondation/
|
||
|
|
||
|
[testenv:linters]
|
||
|
deps =
|
||
|
flake8
|
||
|
flake8-annotations
|
||
|
flake8-colors
|
||
|
flake8-typing-imports
|
||
|
pep8-naming
|
||
|
pyflakes
|
||
|
commands =
|
||
|
flake8 main.py squinnondation
|
||
|
|
||
|
[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
|