mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
[qa] pull-tester: Don't mute zmq ImportError
This commit is contained in:
parent
67a55025a1
commit
fabfd5dae2
@ -94,12 +94,12 @@ if not (ENABLE_WALLET == 1 and ENABLE_UTILS == 1 and ENABLE_BITCOIND == 1):
|
|||||||
if ENABLE_ZMQ:
|
if ENABLE_ZMQ:
|
||||||
try:
|
try:
|
||||||
import zmq
|
import zmq
|
||||||
except ImportError as e:
|
except ImportError:
|
||||||
print("WARNING: \"import zmq\" failed. Set ENABLE_ZMQ=0 or " \
|
print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or "
|
||||||
"to run zmq tests, see dependency info in /qa/README.md.")
|
"to run zmq tests, see dependency info in /qa/README.md.")
|
||||||
ENABLE_ZMQ=0
|
# ENABLE_ZMQ=0
|
||||||
|
raise
|
||||||
|
|
||||||
#Tests
|
|
||||||
testScripts = [
|
testScripts = [
|
||||||
# longest test should go first, to favor running tests in parallel
|
# longest test should go first, to favor running tests in parallel
|
||||||
'p2p-fullblocktest.py',
|
'p2p-fullblocktest.py',
|
||||||
|
Loading…
Reference in New Issue
Block a user