aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2024-02-26 09:21:36 +0100
committerLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2024-02-26 09:40:41 +0100
commit2b8d4d3dfda94890f3badda9928374fad9b659c3 (patch)
treead162fdaad202518d014cba7e2ba10fdcb3d1179 /tox.ini
parent1a3dccf17efeffb10466ed0ad2e1895cbd859920 (diff)
Fix the issue of basic_vm_macro configuration
- Fix the issue of basic_vm_macro introduced after refactoring - new SDK version used - tox updated with helper commands Issue-ID: TEST-402 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> Change-Id: I46aedcd08279142b2da48a431ab4f21ae1c9d3d1
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