diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -5,7 +5,7 @@ per-file-ignores = fietsboek/models/__init__.py:F401 [tox] -envlist = python,pylint,flake8 +envlist = python,pylint,pylint-tests,flake8 [testenv] deps = pytest @@ -21,6 +21,13 @@ usedevelop = true commands = pylint fietsboek +[testenv:pylint-tests] +deps = pylint +usedevelop = true +allowlist_externals = bash +commands = + bash -c "pylint --rcfile=pylint.tests.toml tests/**/*.py" + [testenv:flake8] deps = flake8 usedevelop = true |