Skip to content

Commit 4a0d7d6

Browse files
committed
Always call parameters by name while submitting a job for testing
1 parent 3357d1f commit 4a0d7d6

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

tests/integration-tests/tests/common/schedulers_common.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -280,14 +280,14 @@ def submit_command(
280280

281281
return self._submit_batch_job(
282282
job_submit_command,
283-
nodes,
284-
slots,
285-
host,
286-
after_ok,
287-
partition,
288-
constraint,
289-
prefer,
290-
other_options,
283+
nodes=nodes,
284+
slots=slots,
285+
host=host,
286+
after_ok=after_ok,
287+
partition=partition,
288+
constraint=constraint,
289+
prefer=prefer,
290+
other_options=other_options,
291291
raise_on_error=raise_on_error,
292292
)
293293

@@ -316,14 +316,14 @@ def submit_script(
316316

317317
return self._submit_batch_job(
318318
job_submit_command,
319-
nodes,
320-
slots,
321-
host,
322-
after_ok,
323-
partition,
324-
constraint,
325-
other_options,
326-
additional_files,
319+
nodes=nodes,
320+
slots=slots,
321+
host=host,
322+
after_ok=after_ok,
323+
partition=partition,
324+
constraint=constraint,
325+
other_options=other_options,
326+
additional_files=additional_files,
327327
raise_on_error=raise_on_error,
328328
)
329329

0 commit comments

Comments
 (0)