Skip to content

Commit

Permalink
Add to the dictionary, as the result of a .update call is return valu…
Browse files Browse the repository at this point in the history
…e None
  • Loading branch information
Caspar van Leeuwen committed Mar 1, 2024
1 parent 77bd3ec commit e034bff
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
3 changes: 2 additions & 1 deletion config/aws_mc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
],
}

Expand Down
3 changes: 2 additions & 1 deletion config/it4i_karolina.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
],
}
3 changes: 2 additions & 1 deletion config/izum_vega.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
],
}
3 changes: 2 additions & 1 deletion config/settings_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
],
}

Expand Down
4 changes: 3 additions & 1 deletion config/surf_snellius.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
],
}

3 changes: 2 additions & 1 deletion config/vsc_hortense.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
}

0 comments on commit e034bff

Please sign in to comment.