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 af936b5 commit c2bb22cCopy full SHA for c2bb22c
.gitignore
@@ -22,3 +22,4 @@ ci/htcondor/environment.yml
22
.vscode/
23
ca.pem
24
key.pem
25
+*.out
dask_jobqueue/tests/test_slurm.py
@@ -206,6 +206,10 @@ def test_config_name_slurm_takes_custom_config():
206
207
@pytest.mark.env("slurm")
208
def test_different_interfaces_on_scheduler_and_workers(loop):
209
+ import psutil
210
+
211
+ if "eth0" not in psutil.net_if_addrs():
212
+ pytest.skip("No eth0 interface found")
213
with SLURMCluster(
214
walltime="00:02:00",
215
cores=1,
0 commit comments