Skip to content

Commit 65fee8e

Browse files
committed
test: Revert fatal-ness of missing python-zmq
It looks like travis is using the `travis.yml` from the branch, but runs the test script from the branch merged into master. This causes pull requests created before the QA tests python 3 transition to fail. This temporarily reverts fa05e22 (#7851). It can be restored when this is no longer an issue.
1 parent e29cfc4 commit 65fee8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qa/pull-tester/rpc-tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
try:
8383
import zmq
8484
except ImportError as e:
85-
print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or " \
85+
print("WARNING: \"import zmq\" failed. Set ENABLE_ZMQ=0 or " \
8686
"to run zmq tests, see dependency info in /qa/README.md.")
87-
raise e
87+
ENABLE_ZMQ=0
8888

8989
#Tests
9090
testScripts = [

0 commit comments

Comments
 (0)