1
0
mirror of https://github.com/enpaul/kodak.git synced 2024-09-21 08:13:54 +00:00
kodak/tox.ini

77 lines
1.9 KiB
INI
Raw Normal View History

2020-09-16 07:41:53 +00:00
[tox]
envlist =
py{37,38,39}
static
static-tests
security
docs
2020-09-16 07:41:53 +00:00
isolated_build = true
skip_missing_interpreters = true
[testenv]
description = Run the tests
require_locked_deps = true
locked_deps =
pytest
pytest-cov
toml
2020-09-16 07:41:53 +00:00
commands =
2021-05-02 22:12:04 +00:00
pytest --cov={envsitepackagesdir}/dehance --cov-config {toxinidir}/.coveragerc --cov-report term-missing {toxinidir}/tests/
2020-09-16 07:41:53 +00:00
[testenv:static]
description = Static formatting and quality enforcement
basepython = python3.8
2020-09-16 07:41:53 +00:00
ignore_errors = true
skip_install = true
locked_deps =
black
blacken-docs
2021-05-02 22:12:04 +00:00
mdformat
mdformat-gfm
mypy
reorder-python-imports
pre-commit
pre-commit-hooks
pylint
2020-09-16 07:41:53 +00:00
commands =
pre-commit run --all-files
2021-05-02 22:12:04 +00:00
pylint --rcfile {toxinidir}/.pylintrc {toxinidir}/dehance/
mypy --ignore-missing-imports --no-strict-optional {toxinidir}/dehance/
2020-09-16 07:41:53 +00:00
[testenv:static-tests]
description = Static formatting and quality enforcement for the tests
basepython = python3.8
2020-09-16 07:41:53 +00:00
ignore_errors = true
skip_install = true
locked_deps =
pylint
mypy
2020-09-16 07:41:53 +00:00
commands =
pylint --rcfile {toxinidir}/.pylintrc {toxinidir}/tests/
mypy --ignore-missing-imports --no-strict-optional {toxinidir}/tests/
2020-09-16 07:41:53 +00:00
[testenv:security]
description = Security checks
basepython = python3.8
skip_install = true
2020-09-16 07:41:53 +00:00
ignore_errors = true
locked_deps =
bandit
safety
poetry
2020-09-16 07:41:53 +00:00
commands =
2021-05-02 22:12:04 +00:00
bandit --recursive --quiet {toxinidir}/dehance/
bandit --recursive --quiet --skip B101 {toxinidir}/tests/
poetry export --format requirements.txt --output {envtmpdir}/requirements.txt --without-hashes --dev
safety check --bare --file {envtmpdir}/requirements.txt
2020-09-16 07:41:53 +00:00
[testenv:docs]
description = Build the documentation
basepython = python3.8
locked_deps =
sphinx
sphinx-autodoc-typehints
2020-09-16 07:41:53 +00:00
commands =
2021-05-02 22:12:04 +00:00
sphinx-apidoc --no-toc --output-dir {toxinidir}/docs/ {toxinidir}/dehance/
sphinx-build -W -b html {toxinidir}/docs/ {toxinidir}/docs/_build