diff --git a/.gitlab/ci/release/pip.gitlab-ci.yml b/.gitlab/ci/release/pip.gitlab-ci.yml
index ef3fd3904089284517c21c4cc02b9a593ab1a993..a8a026055142ded90134f38c55c038a0c9f4072d 100644
--- a/.gitlab/ci/release/pip.gitlab-ci.yml
+++ b/.gitlab/ci/release/pip.gitlab-ci.yml
@@ -5,7 +5,7 @@ release:pip:ubuntu:
   extends: .release:pip:template
   tags:
     - docker
-  needs: 
+  needs:
     - build:ubuntu_python
     - test:ubuntu_python
 
@@ -24,14 +24,16 @@ release:pip:ubuntu:
 
     - export WHEELS=$(find wheelhouse/ -name "$CI_PROJECT_NAME*.whl")
     - echo "Reinstalling each found wheels = ${WHEELS}"
-    - >
-      for wheel in $WHEELS; do # not sure if a for loop is needed here but just in case multiple wheels are found
-        python -m pip install --force-reinstall $wheel[test]
-        python -m pip list
-        cd $CI_PROJECT_NAME # entering package so python doesn't import local package and in
-        python -m pytest unit_tests/*
-      done
+
+    # This test should be done in relevent package.
+    # - >
+    #   for wheel in $WHEELS; do # not sure if a for loop is needed here but just in case multiple wheels are found
+    #     python -m pip install --force-reinstall $wheel[test]
+    #     python -m pip list
+    #     cd $CI_PROJECT_NAME # entering package so python doesn't import local package and in
+    #     python -m pytest unit_tests/*
+    #   done
 
 deploy:pip:ubuntu:
-  extends: 
+  extends:
     - .deploy:pip:ubuntu:template