Skip to content

Commit

Permalink
merge with #850
Browse files Browse the repository at this point in the history
  • Loading branch information
lara committed Jan 16, 2025
2 parents 3e8b938 + d8794a1 commit 8e5368a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,18 @@ else
fatal_error "Failed to extract names of tests to run: ${REFRAME_NAME_ARGS}"
exit ${test_selection_exit_code}
fi
export REFRAME_ARGS="--tag CI --tag 1_4_node --nocolor ${REFRAME_NAME_ARGS}"
# Allow people deploying the bot to overrwide this
if [ -z "$REFRAME_SCALE_TAG" ]; then
REFRAME_SCALE_TAGS="--tag 1_4_node"
fi
if [ -z "$REFRAME_CI_TAG" ]; then
REFRAME_CI_TAG="--tag CI"
fi
# Allow bot-deployers to add additional args through the environment
if [ -z "$REFRAME_ADDITIONAL_ARGS" ]; then
REFRAME_ADDITIONAL_ARGS=""
fi
export REFRAME_ARGS="${REFRAME_CI_TAG} ${REFRAME_SCALE_TAG} ${REFRAME_ADDITIONAL_ARGS} --nocolor ${REFRAME_NAME_ARGS}"

# List the tests we want to run
echo "Listing tests: reframe ${REFRAME_ARGS} --list"
Expand Down

0 comments on commit 8e5368a

Please sign in to comment.