diff --git a/.gitlab/ci/release/pip.gitlab-ci.yml b/.gitlab/ci/release/pip.gitlab-ci.yml
index c6aa9daab27825b71a260dec08cdcf1d2c4986cf..0c784fc973bd00d9e983a1a8910901e3c229119b 100644
--- a/.gitlab/ci/release/pip.gitlab-ci.yml
+++ b/.gitlab/ci/release/pip.gitlab-ci.yml
@@ -19,6 +19,8 @@ release:pip:ubuntu:
     - set +x
 
   after_script: 
+    - set +x
+    - echo "After script"
     - >
       for DEP_NAME in "${DEPS_NAMES[@]}"; do
       	echo "current dep $DEP_NAME"
@@ -27,7 +29,7 @@ release:pip:ubuntu:
         cd ..
       done
     - export WHL_NAME=$(find . -name "$CI_PROJECT_NAME*.whl")
-    - pip install wheelhouse/$WHL_NAME
+    - pip install $WHL_NAME
     - cd ..
     ############################################################################
     # In order to perform the test on the installed package, not on the source code, change the repo name with mv 
@@ -39,3 +41,4 @@ release:pip:ubuntu:
     - export PATH_TEST=$(pwd)
     - cd ../../../..
     - pytest $PATH_TEST
+    -set -x