2020-09-16 07:41:53 +00:00
|
|
|
[tox]
|
2020-12-22 02:52:23 +00:00
|
|
|
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
|
2020-12-22 02:52:23 +00:00
|
|
|
require_locked_deps = true
|
|
|
|
locked_deps =
|
|
|
|
pytest
|
|
|
|
pytest-cov
|
|
|
|
toml
|
2020-09-16 07:41:53 +00:00
|
|
|
commands =
|
2020-12-22 02:52:23 +00:00
|
|
|
pytest --cov={envsitepackagesdir}/imagemonk --cov-config {toxinidir}/.coveragerc --cov-report term-missing {toxinidir}/tests/
|
2020-09-16 07:41:53 +00:00
|
|
|
|
|
|
|
[testenv:static]
|
2020-12-22 02:52:23 +00:00
|
|
|
description = Static formatting and quality enforcement
|
|
|
|
basepython = python3.8
|
2020-09-16 07:41:53 +00:00
|
|
|
ignore_errors = true
|
2020-12-22 02:52:23 +00:00
|
|
|
skip_install = true
|
|
|
|
locked_deps =
|
|
|
|
black
|
|
|
|
blacken-docs
|
|
|
|
mypy
|
|
|
|
reorder-python-imports
|
|
|
|
pre-commit
|
|
|
|
pre-commit-hooks
|
|
|
|
pylint
|
2020-09-16 07:41:53 +00:00
|
|
|
commands =
|
|
|
|
pre-commit run --all-files
|
2020-12-22 02:52:23 +00:00
|
|
|
pylint --rcfile {toxinidir}/.pylintrc {toxinidir}/imagemonk/
|
|
|
|
mypy --ignore-missing-imports --no-strict-optional {toxinidir}/imagemonk/
|
2020-09-16 07:41:53 +00:00
|
|
|
|
|
|
|
[testenv:static-tests]
|
2020-12-22 02:52:23 +00:00
|
|
|
description = Static formatting and quality enforcement for the tests
|
|
|
|
basepython = python3.8
|
2020-09-16 07:41:53 +00:00
|
|
|
ignore_errors = true
|
2020-12-22 02:52:23 +00:00
|
|
|
skip_install = true
|
|
|
|
locked_deps =
|
|
|
|
pylint
|
|
|
|
mypy
|
2020-09-16 07:41:53 +00:00
|
|
|
commands =
|
2020-12-22 02:52:23 +00:00
|
|
|
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]
|
2020-12-22 02:52:23 +00:00
|
|
|
description = Security checks
|
|
|
|
basepython = python3.8
|
|
|
|
skip_install = true
|
2020-09-16 07:41:53 +00:00
|
|
|
ignore_errors = true
|
2020-12-22 02:52:23 +00:00
|
|
|
locked_deps =
|
|
|
|
bandit
|
|
|
|
safety
|
|
|
|
poetry
|
2020-09-16 07:41:53 +00:00
|
|
|
commands =
|
2020-12-22 02:52:23 +00:00
|
|
|
bandit --recursive --quiet {toxinidir}/imagemonk/
|
|
|
|
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]
|
2020-12-22 02:52:23 +00:00
|
|
|
description = Build the documentation
|
|
|
|
basepython = python3.8
|
|
|
|
locked_deps =
|
|
|
|
sphinx
|
|
|
|
sphinx-autodoc-typehints
|
2020-09-16 07:41:53 +00:00
|
|
|
commands =
|
2020-12-22 02:52:23 +00:00
|
|
|
sphinx-apidoc --no-toc --output-dir {toxinidir}/docs/ {toxinidir}/imagemonk/
|
|
|
|
sphinx-build -W -b html {toxinidir}/docs/ {toxinidir}/docs/_build
|