From ceb21baebc820fbccf873d6057a45415e6ba57e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Sch=C3=BCtt?= Date: Sun, 2 Feb 2025 13:19:26 +0100 Subject: [PATCH] Docker: Skip SIRIUS in AiiDA test --- tools/docker/scripts/test_aiida.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/docker/scripts/test_aiida.sh b/tools/docker/scripts/test_aiida.sh index e5b40717d6..63b62e91fb 100755 --- a/tools/docker/scripts/test_aiida.sh +++ b/tools/docker/scripts/test_aiida.sh @@ -62,6 +62,9 @@ $AS_UBUNTU_USER /opt/venv/bin/verdi presto # fake the presents of conda ln -s /bin/true /usr/bin/conda +# fake the presents of aiida-pseudo +ln -s /bin/true /usr/bin/aiida-pseudo + # setup code mkdir -p /opt/conda/envs/cp2k/bin/ cat > /opt/conda/envs/cp2k/bin/cp2k.psmp << EndOfMessage @@ -77,7 +80,7 @@ set +e # disable error trapping for remainder of script ( set -e # abort on error ulimit -t 1800 # abort after 30 minutes - $AS_UBUNTU_USER /opt/venv/bin/py.test + $AS_UBUNTU_USER /opt/venv/bin/py.test -k "not example_sirius" ) EXIT_CODE=$?