Skip to content

Commit

Permalink
adding debug statements to test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
gbomarito committed Sep 23, 2024
1 parent f518be8 commit 089bd54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/.run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ python -c "import mpi4py;"
echo "importing mpi4py"
python -c "import os;"
echo "getting filename"
python -c "import mpi4py;import os;filename = next(iter(mpi4py.get_config().items()))[1];"
python -c "import mpi4py;import os;filename = list(mpi4py.get_config().values())[0];"
echo "Finding MPI install"
MPI_EXEC=$(python -c "import mpi4py;import os;filename = next(iter(mpi4py.get_config().items()))[1];print(os.path.dirname(filename)+'/mpiexec');")
MPI_EXEC=$(python -c "import mpi4py;import os;filename = list(mpi4py.get_config().values())[0];print(os.path.dirname(filename)+'/mpiexec');")
echo $MPI_EXEC
RUN_MODE=${1-"coverage"}
echo $RUN_MODE
Expand Down

0 comments on commit 089bd54

Please sign in to comment.