We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9556745 commit c18a9caCopy full SHA for c18a9ca
qa/pull-tester/rpc-tests.py
@@ -94,12 +94,12 @@
94
if ENABLE_ZMQ:
95
try:
96
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
+ except ImportError:
+ print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or "
+ "to run zmq tests, see dependency info in /qa/README.md.")
+ # ENABLE_ZMQ=0
101
+ raise
102
-#Tests
103
testScripts = [
104
# longest test should go first, to favor running tests in parallel
105
'p2p-fullblocktest.py',
0 commit comments