Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only run OSU test for now in test step. #571

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,15 @@ else
fi

# List the tests we want to run
export REFRAME_ARGS='--tag CI --tag 1_node --nocolor'
export REFRAME_FLAGS='--nocolor'
export REFRAME_TAGS='--tag CI --tag 1_node'
# Limit test names to relevant tests
# For now, we limit to OSU.
# In the future, we should create some mapping between module names of modules that are deployed.
# E.g. if TensorFlow was deployed, we want to run with `-n TensorFlow`. If OpenMPI was deployed
# we want to run with `-n OSU`, or maybe even `-n OSU -n GROMACS.*foss` to also test _one_ OpenMPI application
export REFRAME_INCLUDE_PATTERNS='-n OSU'
export REFRAME_ARGS="${REFRAME_FLAGS} ${REFRAME_TAGS} ${REFRAME_INCLUDE_PATTERNS}"
echo "Listing tests: reframe ${REFRAME_ARGS} --list"
reframe ${REFRAME_ARGS} --list
if [[ $? -eq 0 ]]; then
Expand Down