aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: ebbb34843e45e2ab892f79e4f0ea8c8b4e41c432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist = py38,py39,pylint,pydocstyle,bandit

[testenv]
commands = pytest tests/
deps = -rtest-requirements.txt
setenv = PYTHONPATH = {toxinidir}/src

[testenv:pylint]
commands = pylint src/
basepython = python3.8

[testenv:pydocstyle]
commands = pydocstyle src/

[testenv:bandit]
commands = bandit -r src/onapsdk