[qa] pull-tester: Don't mute zmq ImportError

Zcash: We didn't backport the mute, so this is just conflict removal.
This commit is contained in:
MarcoFalke 2016-06-29 11:53:07 +02:00 committed by Jack Grigg
parent e4d1dcc753
commit 4500a75346
1 changed files with 5 additions and 5 deletions

View File

@ -92,12 +92,12 @@ if not (ENABLE_WALLET == 1 and ENABLE_UTILS == 1 and ENABLE_BITCOIND == 1):
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',