aboutsummaryrefslogtreecommitdiffstats
path: root/test/security/check_versions/tox.ini
blob: 78510e7a3a73ef54fa52c9605dabfc4ef4e486ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist = black, pylint
skipsdist = true

[testenv]
basepython = python3
deps = -r{toxinidir}/env/requirements-dev.txt

[testenv:black]
commands = black {toxinidir}/src tests

[testenv:pylint]
commands = pylint -d C0330,W0511 {toxinidir}/src

[testenv:pytest]
setenv = PYTHONPATH = {toxinidir}/src
commands = pytest -vv -s tests