diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4e1cc2f390da3aa0034599c70b092fa9810889df..ef9f4b76642f8710a9367e47b0565e4ec239b91c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,7 +27,9 @@ deploy-to-testpypi:
   script:
     - pip install twine
     - python setup.py sdist bdist_wheel
-    - echo "My password is:$PYPI_TEST_PASSWORD"
+    - echo "Dummy:'$ENVTEST'"
+    - echo "Dummy:$ENVTEST"
+    - echo "My password is:'$PYPI_TEST_PASSWORD'"
     - twine upload -u "__token__" -p "$PYPI_TEST_PASSWORD" --repository-url https://test.pypi.org/legacy/ --skip-existing dist/*
 
 install-from-testpypi: