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

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

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

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

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