Pin tox.ini basepython to 3.8
[integration.git] / test / security / check_versions / tox.ini
1 [tox]
2 envlist = black, pylint
3 skipsdist = true
4
5 [testenv]
6 basepython = python3.8
7 deps = -r{toxinidir}/env/requirements-dev.txt
8
9 [testenv:black]
10 commands = black {toxinidir}/src tests
11
12 [testenv:pylint]
13 commands = pylint -d C0330,W0511 {toxinidir}/src
14
15 [testenv:pytest]
16 setenv = PYTHONPATH = {toxinidir}/src
17 commands = pytest -vv -s tests