summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run_all_tests.sh')
-rwxr-xr-xtests/run_all_tests.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh
index 13aa2fb..c2f9f93 100755
--- a/tests/run_all_tests.sh
+++ b/tests/run_all_tests.sh
@@ -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