summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.sh
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-09-07 22:20:40 -0700
committerScott Gasch <[email protected]>2021-09-07 22:20:40 -0700
commitb10d30a46e601c9ee1f843241f2d69a1f90f7a94 (patch)
tree30c95e6f4333b57ff3ae7a4dee278b2097612d10 /tests/run_all_tests.sh
parentf49bb9db0c6d1a8622dca1717db68462a4209112 (diff)
Various changes.
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