aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini23
1 files changed, 23 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 823f5c5..6c1a015 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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