Skip to content

Commit

Permalink
Update test_executor_backend_flux.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen authored Dec 19, 2024
1 parent 14405a2 commit 38125a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_executor_backend_flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def test_output_files_cwd(self):
file_stdout = os.path.join(os.path.dirname(__file__), "flux.out")
file_stderr = os.path.join(os.path.dirname(__file__), "flux.err")
with Executor(
max_cores=2,
resource_dict={"cores": 2, "cwd": os.path.dirname(__file__)},
max_cores=1,
resource_dict={"cores": 1, "cwd": os.path.dirname(__file__)},
flux_executor=self.executor,
backend="flux_allocation",
block_allocation=True,
Expand All @@ -126,8 +126,8 @@ def test_output_files_abs(self):
file_stdout = os.path.abspath("flux.out")
file_stderr = os.path.abspath("flux.err")
with Executor(
max_cores=2,
resource_dict={"cores": 2},
max_cores=1,
resource_dict={"cores": 1},
flux_executor=self.executor,
backend="flux_allocation",
block_allocation=True,
Expand Down

0 comments on commit 38125a5

Please sign in to comment.