From 677bf4be794177eef5e404bb7b9916271390b09c Mon Sep 17 00:00:00 2001 From: Simone Balducci Date: Sun, 4 Aug 2024 20:51:51 +0200 Subject: [PATCH] Test fix in workflow --- .github/workflows/installation.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/installation.yml b/.github/workflows/installation.yml index 2a42727..8637523 100644 --- a/.github/workflows/installation.yml +++ b/.github/workflows/installation.yml @@ -84,8 +84,9 @@ jobs: docker build -t nogcc . echo "Testing installation from PyPi" - docker run -t nogcc bash -c \ - "pip install CLUEstering; python3 -c 'import CLUEstering' || exit 0" + docker run -t -v "$(pwd)"/../../:/app nogcc bash -c \ + "cd /app && pip install .; + python3 -c 'import CLUEstering' || exit 0" echo "Testing installation from git repository" docker run -t nogcc bash -c \