keyosk/tox.ini

53 lines
1.2 KiB
INI
Raw Normal View History

[tox]
envlist = py37, py36, lint, typing, security, docs
2020-02-19 03:37:39 +00:00
isolated_build = true
[testenv]
description = Run the unit tests (pytest)
deps =
marshmallow == 3.5.0
passlib == 1.7.2
peewee == 3.13.1
pytest == 5.3.5
pytest-cov == 2.8.1
toml == 0.10.0
2020-02-19 04:02:43 +00:00
commands =
2020-02-24 01:24:39 +00:00
pytest --cov={envsitepackagesdir}/keyosk --cov-config .coveragerc tests/ --cov-report term-missing
[testenv:lint]
description = Check code formatting against black and pylint
deps =
pre-commit == 2.1.0
2020-02-19 03:37:39 +00:00
pylint == 2.3.1
astroid == 2.2.5
commands =
2020-02-19 03:37:39 +00:00
pre-commit run --all-files
pylint keyosk
[testenv:typing]
description = Check type annotations with mypy
2020-02-19 04:02:43 +00:00
deps =
mypy == 0.761
2020-02-19 04:02:43 +00:00
commands =
2020-02-19 03:37:39 +00:00
mypy keyosk --ignore-missing-imports --no-strict-optional
2020-02-19 03:37:39 +00:00
[testenv:security]
description = Check security vulnerabilities (bandit)
2020-02-19 04:02:43 +00:00
deps =
bandit == 1.6.2
2020-02-19 03:37:39 +00:00
commands =
bandit --recursive keyosk
2020-02-19 03:37:39 +00:00
[testenv:docs]
description = Build documentation to check RST syntax (sphinx)
deps =
sphinx == 2.4.2
sphinx-autodoc-typehints == 1.10.3
2020-02-19 03:37:39 +00:00
whitelist_externals =
rm
commands =
sphinx-apidoc -o "./docs/" "keyosk"
rm "docs/modules.rst"
sphinx-build -M html "./docs/" "./docs/_build" -W
sphinx-build -M latex "./docs/" "./docs/_build" -W