rpc_zmq
functional test should be skipped when the zmq
python3 package is not installed. This is breaking https://bitcoinperf.com benchmarks at the moment.
rpc_zmq
functional test should be skipped when the zmq
python3 package is not installed. This is breaking https://bitcoinperf.com benchmarks at the moment.
16@@ -17,6 +17,11 @@ def set_test_params(self):
17 self.setup_clean_chain = True
18
19 def run_test(self):
20+ try:
21+ import zmq
Also refactors zmq-related test skipping logic into distinct functions.