Merge "Add functional tests for regenerator type"
[transportpce.git] / tests / launch_tests.sh
index a2f3f1997ddd50e7c02b198161c05aa9f687ea12..497209341bde920a81119740c4f095cbc399facc 100755 (executable)
@@ -31,7 +31,19 @@ else
     done
 fi
 if [ -z "$LAUNCHER" ]; then
-    LAUNCHER="nosetests --with-xunit";
+    if [ `which pytest-3` ]; then
+            LAUNCHER="pytest-3"
+    else
+        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