projects
/
pyutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3eb1a42
)
Make run_tests_serially.sh skip zookeeper_test.py too.
author
Scott Gasch
<scott@gasch.org>
Sat, 29 Oct 2022 17:58:08 +0000
(10:58 -0700)
committer
Scott Gasch
<scott@gasch.org>
Sat, 29 Oct 2022 17:58:08 +0000
(10:58 -0700)
tests/run_tests_serially.sh
patch
|
blob
|
history
diff --git
a/tests/run_tests_serially.sh
b/tests/run_tests_serially.sh
index d9c8590e0f4a46e962e01214787d87822fed7313..b4a87da6594ea7b836bc60c39dee417bae581404 100755
(executable)
--- a/
tests/run_tests_serially.sh
+++ b/
tests/run_tests_serially.sh
@@
-125,6
+125,10
@@
if [ ${UNITTEST} -eq 1 ]; then
for test in $(find ${ROOT} -name "*_test.py" -print); do
BASE=$(basename ${test})
HDR="${BASE} (unittest)"
+ if [ "${BASE}" == "zookeeper_test.py" ]; then
+ echo "(skipping zookeeper_test.py; if you have a zookeeper instance, fixme)"
+ continue
+ fi
make_header "${HDR}" "${GREEN}"
if [ ${COVERAGE} -eq 1 ]; then
coverage run --source ../src ${test} --unittests_ignore_perf >./test_output/${BASE}-output.txt 2>&1