nextcloud-deck/tox.ini

35 wiersze
535 B
INI
Czysty Zwykły widok Historia

2021-06-20 13:07:58 +00:00
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
2021-07-29 14:47:07 +00:00
envlist = py38,py39,flake8
isolated_build = True
2021-06-20 13:07:58 +00:00
[testenv]
;changedir=tests
awlayscopy = True
setenv=
PYTHONPATH=.
deps = -rrequirements.txt
commands = py.test {posargs:tests}
[testenv:flake8]
skip_install = true
deps = flake8
commands = flake8
[flake8]
2021-07-29 14:47:23 +00:00
ignore = F401,E501,W605
2021-06-20 13:07:58 +00:00
exclude =
.git,
__pycache__,
list,
docs/conf.py,
build,
dist,
.cache,
.pytest_cache,
.tox,
*.pyc,
2021-07-29 14:47:23 +00:00
*.egg,
venv,
test