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 6302bee commit a848d70Copy full SHA for a848d70
pytest_parallel/utils/socket.py
@@ -42,7 +42,7 @@ def _get_my_ip_address():
42
hostname = socket.gethostname()
43
44
assert command_exists('tracepath'), 'pytest_parallel SLURM scheduler: command `tracepath` is not available'
45
- cmd = ['tracepath','-4','-n',hostname]
+ cmd = ['tracepath','-n',hostname]
46
r = subprocess.run(cmd, stdout=subprocess.PIPE)
47
assert r.returncode==0, f'pytest_parallel SLURM scheduler: error running command `{" ".join(cmd)}`'
48
ips = r.stdout.decode("utf-8")
0 commit comments