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 1e8f88e commit db01839Copy full SHA for db01839
test/functional/test_framework/test_framework.py
@@ -161,8 +161,10 @@ def main(self):
161
success = TestStatus.FAILED
162
163
try:
164
- if self.options.usecli and not self.supports_cli:
165
- raise SkipTest("--usecli specified but test does not support using CLI")
+ if self.options.usecli:
+ if not self.supports_cli:
166
+ raise SkipTest("--usecli specified but test does not support using CLI")
167
+ self.skip_if_no_cli()
168
self.skip_test_if_missing_module()
169
self.setup_chain()
170
self.setup_network()
0 commit comments