Skip to content

Commit

Permalink
[qa] pull-tester: Don't mute zmq ImportError
Browse files Browse the repository at this point in the history
Zcash: We didn't backport the mute, so this is just conflict removal.
  • Loading branch information
MarcoFalke authored and str4d committed Nov 21, 2020
1 parent e4d1dcc commit 4500a75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions qa/pull-tester/rpc-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@
if ENABLE_ZMQ:
try:
import zmq
except ImportError as e:
print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or " \
"to run zmq tests, see dependency info in /qa/README.md.")
raise e
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
raise

#Tests
testScripts = [
# longest test should go first, to favor running tests in parallel
'p2p-fullblocktest.py',
Expand Down

0 comments on commit 4500a75

Please sign in to comment.