diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -74,3 +74,26 @@ skip_install = True setenv = PYTHONPATH = {toxinidir}/src commands = python run_test.py all true + +[testenv:run-test] +basepython = python3.11 +deps = + -rrequirements.txt +skip_install = True +setenv = + PYTHONPATH = {toxinidir}/src +commands = python run_test.py {posargs} + +[testenv:isort-check] +basepython = python3.11 +deps = + isort +skip_install = True +commands = isort src/onaptests --check --thirdparty=onapsdk + +[testenv:isort-fix] +basepython = python3.11 +deps = + isort +skip_install = True +commands = isort src/onaptests --thirdparty=onapsdk |