Skip to content

Commit

Permalink
Add the list(SCALES.keys()) feature (though technically we could limi…
Browse files Browse the repository at this point in the history
…t to singlenode already here...). Also, make sure color is not used for printing the ReFrame results, to avoid color-characters making it into the slurm output file
  • Loading branch information
Caspar van Leeuwen committed Feb 15, 2024
1 parent 69d6d2e commit 2dd048e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion reframe_config_bot.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ site_configuration = {
'scheduler': 'local',
'launcher': 'mpirun',
'environs': ['default'],
'features': [FEATURES[CPU]],
'features': [
FEATURES[CPU]
] + list(SCALES.keys()),
'processor': {
'num_cpus': __NUM_CPUS__,
'num_sockets': __NUM_SOCKETS__,
Expand Down
2 changes: 1 addition & 1 deletion test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ else
fi

# List the tests we want to run
export REFRAME_ARGS='--tag CI --tag 1_node'
export REFRAME_ARGS='--tag CI --tag 1_node --nocolor'
echo "Listing tests: reframe ${REFRAME_ARGS} --list"
reframe ${REFRAME_ARGS} --list
if [[ $? -eq 0 ]]; then
Expand Down

0 comments on commit 2dd048e

Please sign in to comment.