You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move zmq test skipping logic into individual test case.
This commit uses the new skip test funcationality added in
232b666 to skip the zmq tests if the
python zmq module is not available or if bitcoind has been built without
zmq support.
This removes the zmq-specific logic from test_runner.py. In general it's
better if test_runner.py has no knowledge of special cases for
individual tests and is a general purpose test runner.
# These are python files that live in the functional tests directory, but are not test scripts.
@@ -174,7 +170,6 @@ def main():
174
170
parser.add_argument('--jobs', '-j', type=int, default=4, help='how many test scripts to run in parallel. Default=4.')
175
171
parser.add_argument('--keepcache', '-k', action='store_true', help='the default behavior is to flush the cache directory on startup. --keepcache retains the cache from the previous testrun.')
176
172
parser.add_argument('--quiet', '-q', action='store_true', help='only print results summary and failure logs')
177
-
parser.add_argument('--nozmq', action='store_true', help='do not run the zmq tests')
178
173
args, unknown_args=parser.parse_known_args()
179
174
180
175
# Create a set to store arguments and create the passon string
0 commit comments