From e034bff4542261df520ac6fd6c3899a748bde4ce Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Fri, 1 Mar 2024 18:25:19 +0100 Subject: [PATCH] Add to the dictionary, as the result of a .update call is return value None --- config/aws_mc.py | 3 ++- config/it4i_karolina.py | 3 ++- config/izum_vega.py | 3 ++- config/settings_example.py | 3 ++- config/surf_snellius.py | 4 +++- config/vsc_hortense.py | 3 ++- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/config/aws_mc.py b/config/aws_mc.py index f09bf2f3..4419ea27 100644 --- a/config/aws_mc.py +++ b/config/aws_mc.py @@ -86,7 +86,8 @@ # Enable automatic detection of CPU architecture for each partition # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information 'remote_detect': True, - }.update(common_general_config(reframe_prefix)) + **common_general_config(reframe_prefix) + } ], } diff --git a/config/it4i_karolina.py b/config/it4i_karolina.py index 54f54b78..90062c85 100644 --- a/config/it4i_karolina.py +++ b/config/it4i_karolina.py @@ -108,6 +108,7 @@ # Enable automatic detection of CPU architecture for each partition # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information 'remote_detect': True, - }.update(common_general_config(reframe_prefix)) + **common_general_config(reframe_prefix) + } ], } diff --git a/config/izum_vega.py b/config/izum_vega.py index e9357061..4c67792b 100644 --- a/config/izum_vega.py +++ b/config/izum_vega.py @@ -117,6 +117,7 @@ # Enable automatic detection of CPU architecture for each partition # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information 'remote_detect': True, - }.update(common_general_config(reframe_prefix)) + **common_general_config(reframe_prefix) + } ], } diff --git a/config/settings_example.py b/config/settings_example.py index a4d3c06d..1ebccd32 100644 --- a/config/settings_example.py +++ b/config/settings_example.py @@ -118,7 +118,8 @@ # Enable automatic detection of CPU architecture for each partition # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information 'remote_detect': True, - }.update(common_general_config(reframe_prefix)) + **common_general_config(reframe_prefix) + } ], } diff --git a/config/surf_snellius.py b/config/surf_snellius.py index 177078cb..f24385d3 100644 --- a/config/surf_snellius.py +++ b/config/surf_snellius.py @@ -125,6 +125,8 @@ # Enable automatic detection of CPU architecture for each partition # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information 'remote_detect': True, - }.update(common_general_config(reframe_prefix)) + **common_general_config(reframe_prefix) + } ], } + diff --git a/config/vsc_hortense.py b/config/vsc_hortense.py index 8e1d7500..f01eaf3b 100644 --- a/config/vsc_hortense.py +++ b/config/vsc_hortense.py @@ -226,7 +226,8 @@ def command(self, job): { 'purge_environment': True, 'resolve_module_conflicts': False, # avoid loading the module before submitting the job - }.update(common_general_config(reframe_prefix)) + **common_general_config(reframe_prefix) + } ], 'logging': common_logging_config(), }