Skip to content

Commit c18a9ca

Browse files
MarcoFalkeluke-jr
authored andcommitted
[qa] pull-tester: Don't mute zmq ImportError
Github-Pull: #8607 Rebased-From: fabfd5d
1 parent 9556745 commit c18a9ca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

qa/pull-tester/rpc-tests.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@
9494
if ENABLE_ZMQ:
9595
try:
9696
import zmq
97-
except ImportError as e:
98-
print("WARNING: \"import zmq\" failed. Set ENABLE_ZMQ=0 or " \
99-
"to run zmq tests, see dependency info in /qa/README.md.")
100-
ENABLE_ZMQ=0
97+
except ImportError:
98+
print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or "
99+
"to run zmq tests, see dependency info in /qa/README.md.")
100+
# ENABLE_ZMQ=0
101+
raise
101102

102-
#Tests
103103
testScripts = [
104104
# longest test should go first, to favor running tests in parallel
105105
'p2p-fullblocktest.py',

0 commit comments

Comments
 (0)