Skip to content

Commit

Permalink
fix minor bug + add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
truib committed Feb 17, 2024
1 parent 0492b9e commit 8746a33
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,18 @@ else
fi

# Load the ReFrame module
Currently, we load the default version. Maybe we should somehow make this configurable in the future?
# Currently, we load the default version. Maybe we should somehow make this configurable in the future?
module load ReFrame
if [[ $? -eq 0 ]]; then
echo_green ">> Loaded ReFrame module"
else
fatal_error "Failed to load the ReFrame module"
fi

which python3
python3 -V
python3 -c "import sys; print(sys.version_info)"

# Check ReFrame came with the hpctestlib and we can import it
reframe_import="hpctestlib.sciapps.gromacs"
python3 -c "import ${reframe_import}"
Expand Down

0 comments on commit 8746a33

Please sign in to comment.