Various changes.
[python_utils.git] / tests / run_all_tests.sh
index ecb36480d94ad163f9cb67158eaf51b94e0216af..c2f9f93013e8ccf2f1dc69dabac5fc7391a0c69d 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/bash
 
 for test in $(ls *_test.py); do
-    echo "------------------------------ ${test} ------------------------------"
-    ${test}
+    if [ "${test}" != "parallelize_test.py" ]; then
+        echo "------------------------- ${test} -------------------------"
+        ${test}
+    fi
 done