diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0216e05c693d3ecb37de0f83b3d3860be4dec617..cc1016a2cd3b43c6530edfe0cfbde714f008dbc7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,9 +11,9 @@ variables:
 test_python2:
   stage: test
   script:
-    - apt-get update
-    - apt-get install -y git libfftw3-dev openmpi-bin libopenmpi-dev python python-pip python-dev python-nose python-numpy python-matplotlib python-future python-mpi4py python-scipy
-    - pip install --process-dependency-links parameterized coverage git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git
+    - apt-get update > /dev/null
+    - apt-get install -y git libfftw3-dev openmpi-bin libopenmpi-dev python python-pip python-dev python-nose python-numpy python-matplotlib python-future python-mpi4py python-scipy > /dev/null
+    - pip install --process-dependency-links parameterized coverage git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git > /dev/null
     - pip install --user .
     - OMP_NUM_THREADS=1 mpiexec --allow-run-as-root -n 2 nosetests -q 2>/dev/null
     - nosetests -q --with-coverage --cover-package=nifty4 --cover-branches --cover-erase
@@ -23,9 +23,9 @@ test_python2:
 test_python3:
   stage: test
   script:
-    - apt-get update
-    - apt-get install -y git libfftw3-dev openmpi-bin libopenmpi-dev python3 python3-pip python3-dev python3-nose python3-numpy python3-matplotlib python3-future python3-mpi4py python3-scipy
-    - pip3 install --process-dependency-links parameterized git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git
+    - apt-get update > /dev/null
+    - apt-get install -y git libfftw3-dev openmpi-bin libopenmpi-dev python3 python3-pip python3-dev python3-nose python3-numpy python3-matplotlib python3-future python3-mpi4py python3-scipy > /dev/null
+    - pip3 install --process-dependency-links parameterized git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git > /dev/null
     - pip3 install --user .
     - nosetests3 -q
     - OMP_NUM_THREADS=1 mpiexec --allow-run-as-root -n 2 nosetests3 -q 2>/dev/null
@@ -33,10 +33,10 @@ test_python3:
 pages:
   stage: release
   script:
-    - apt-get update
-    - apt-get install -y git libfftw3-dev python python-pip python-dev python-numpy python-future python-sphinx python-sphinx-rtd-theme python-numpydoc
+    - apt-get update > /dev/null
+    - apt-get install -y git libfftw3-dev python python-pip python-dev python-numpy python-future python-sphinx python-sphinx-rtd-theme python-numpydoc > /dev/null
     - pip install --user .
-    - sh docs/generate.sh
+    - sh docs/generate.sh > /dev/null
     - mv docs/build/ public/
   artifacts:
     paths: