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 8a9ffec commit 79b4c27Copy full SHA for 79b4c27
test/functional/rpc_bind.py
@@ -84,7 +84,10 @@ def run_test(self):
84
if not self.options.run_nonloopback:
85
self._run_loopback_tests()
86
if not self.options.run_ipv4 and not self.options.run_ipv6:
87
- self._run_nonloopback_tests()
+ if self.non_loopback_ip:
88
+ self._run_nonloopback_tests()
89
+ else:
90
+ self.log.info('Non-loopback IP address not found, skipping non-loopback tests')
91
92
def _run_loopback_tests(self):
93
if self.options.run_ipv4:
0 commit comments