From 48cc69b9aced755914a78a4a166dfb86bf91dced Mon Sep 17 00:00:00 2001 From: Matthias Krack Date: Wed, 6 Nov 2024 18:50:06 +0100 Subject: [PATCH] Get AiiDA tests working again (except one test) --- tools/docker/scripts/test_aiida.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tools/docker/scripts/test_aiida.sh b/tools/docker/scripts/test_aiida.sh index 59ee016664..877ee59a80 100755 --- a/tools/docker/scripts/test_aiida.sh +++ b/tools/docker/scripts/test_aiida.sh @@ -23,7 +23,8 @@ apt-get install -qq --no-install-recommends \ plocate \ sudo \ git \ - ssh + ssh \ + mpich rm -rf /var/lib/apt/lists/* # Create and activate a virtual environment for Python packages. @@ -35,10 +36,6 @@ export PATH="/opt/venv/bin:$PATH" export LANG="en_US.UTF-8" LANGUAGE="en_US:en" LC_ALL="en_US.UTF-8" locale-gen ${LANG} -# link mpi executables into path -MPI_INSTALL_DIR=$(dirname "$(command -v mpiexec)") -for i in "${MPI_INSTALL_DIR}"/*; do ln -sf "$i" /usr/bin/; done - # Pick a compiler (needed to build some Python packages) export CC=gcc