From b10d30a46e601c9ee1f843241f2d69a1f90f7a94 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 7 Sep 2021 22:20:40 -0700 Subject: Various changes. --- tests/run_all_tests.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/run_all_tests.sh') 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 -- cgit v1.3