diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e7b24c566fe88141ce0f48ee9a4b89a7f78b3c26..ca94dd5c91c7fdf91c86ed0deaf0b172775499b4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@ tests:
     tags:
         - docker
     script:
-        - # if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
+        - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
         - pip install -e .[test]
         - pytest-3
     coverage: '/^TOTAL.+?(\d+\%)$/'
@@ -22,7 +22,7 @@ doc:
     script:
         - export LC_ALL=$(locale -a | grep en_US)
         - export LANG=$(locale -a | grep en_US)
-        - # if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
+        - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
         - pip3 install -e .[doc]
         - rm -Rf build
         - python3 setup.py build_sphinx