From def730a51da7d15e785bc3a26ab6764cbe7a50d6 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Thu, 10 Oct 2024 08:49:38 +0200 Subject: [PATCH] wip --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 35cba45..d09644d 100644 --- a/tox.ini +++ b/tox.ini @@ -23,7 +23,7 @@ commands = python -m pytest --basetemp={envtmpdir} {posargs} deps = {[testenv:tests]deps} extras = linting - # add your fixtures like e.g. pytest_datafiles here +allowlist_externals = pylint setenv = PYTHONPATH = {toxinidir}/src commands = pylint mypackage @@ -36,6 +36,7 @@ setenv = PYTHONPATH = {toxinidir}/src deps = {[testenv:tests]deps} extras = type_check +allowlist_externals = mypy commands = mypy --show-error-codes src/mypackage --strict mypy --show-error-codes unittests --strict @@ -47,6 +48,7 @@ setenv = PYTHONPATH = {toxinidir}/src deps = -r requirements.txt extras = spell_check +allowlist_externals = codespell commands = codespell --ignore-words=domain-specific-terms.txt src codespell --ignore-words=domain-specific-terms.txt README.md @@ -58,6 +60,7 @@ changedir = unittests deps = {[testenv:tests]deps} extras = coverage +allowlist_externals = coverage setenv = PYTHONPATH = {toxinidir}/src commands = coverage run -m pytest --basetemp={envtmpdir} {posargs}