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 6926bf8 commit 233cf3dCopy full SHA for 233cf3d
dask_jobqueue/tests/slurm_runner/basic.py
@@ -1,7 +1,7 @@
1
from dask.distributed import Client
2
from dask_jobqueue.slurm import SLURMRunner
3
4
-with SLURMRunner() as runner:
+with SLURMRunner(scheduler_file="/shared_space/{job_id}.json") as runner:
5
with Client(runner) as client:
6
assert client.submit(lambda x: x + 1, 10).result() == 11
7
assert client.submit(lambda x: x + 1, 20, workers=2).result() == 21
0 commit comments