X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Flaunch_tests.sh;h=497209341bde920a81119740c4f095cbc399facc;hb=f327d205217ec8eefa4326881f8d06f1378db37a;hp=63beeb52887a007137409092f8e18964893bad8b;hpb=bfb25e2820cf2f2fc5c88b5b803bc6a13711317e;p=transportpce.git diff --git a/tests/launch_tests.sh b/tests/launch_tests.sh index 63beeb528..497209341 100755 --- a/tests/launch_tests.sh +++ b/tests/launch_tests.sh @@ -31,11 +31,19 @@ else done fi if [ -z "$LAUNCHER" ]; then - if [ -d "allure-report" ]; then - LAUNCHER="python3 -m pytest --alluredir=allure-report/ -q" + if [ `which pytest-3` ]; then + LAUNCHER="pytest-3" else - LAUNCHER="python3 -m pytest -q" + if [ `which pytest` ]; then + LAUNCHER="pytest" + else + LAUNCHER="python3 -m pytest" + fi + fi + if [ -d "allure-report" ]; then + LAUNCHER="$LAUNCHER --alluredir=allure-report/" fi + LAUNCHER="$LAUNCHER -q" fi for script in $scriptlist; do