From 8746a33de409e8509464c094100e28a0ef08f9ad Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Sat, 17 Feb 2024 01:53:55 +0100 Subject: [PATCH] fix minor bug + add debug output --- test_suite.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test_suite.sh b/test_suite.sh index f8c46ef764..b4d64c5850 100755 --- a/test_suite.sh +++ b/test_suite.sh @@ -130,7 +130,7 @@ 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" @@ -138,6 +138,10 @@ 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}"