We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa32465 commit fa3b379Copy full SHA for fa3b379
qa/pull-tester/rpc-tests.py
@@ -191,7 +191,7 @@ def runtests():
191
if coverage:
192
flags.append(coverage.flag)
193
194
- if len(test_list) > 1:
+ if len(test_list) > 1 and run_parallel > 1:
195
# Populate cache
196
subprocess.check_output([RPC_TESTS_DIR + 'create_cache.py'] + flags)
197
@@ -251,7 +251,7 @@ def get_next(self):
251
stdout=subprocess.PIPE,
252
stderr=subprocess.PIPE)))
253
if not self.jobs:
254
- raise IndexError('%s from empty list' % __name__)
+ raise IndexError('pop from empty list')
255
while True:
256
# Return first proc that finishes
257
time.sleep(.5)
0 commit comments