From 38125a5d98135e01b22601f7e6dd44b9670034c7 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Thu, 19 Dec 2024 15:03:19 -0700 Subject: [PATCH] Update test_executor_backend_flux.py --- tests/test_executor_backend_flux.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_executor_backend_flux.py b/tests/test_executor_backend_flux.py index 6df6a5c3..86068981 100644 --- a/tests/test_executor_backend_flux.py +++ b/tests/test_executor_backend_flux.py @@ -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, @@ -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,