diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index eb83d3cbaf242a31f1a7eab703d391ff771b95ae..e4c0e1472456b1a82fd11720543d0570c1bef660 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,7 +9,6 @@ variables:
 # Definition of our build pipeline order
 stages:
   - build
-  - browser-tests
   - deploy
   - pypi
 
@@ -83,40 +82,6 @@ build_macosx_36:
     PYTHON_VERSION: "3.6"
 
 
-# Docker host based testing (must be run inside dind or docker-enabled host)
-.browser_test_linux_template: &linux_browser_test_job
-  stage: browser-tests
-  image: docker.idiap.ch/beat/ci.env.editor:0.0.1r0
-  before_script:
-    # safe keep artifacts as before_build.sh will erase those...
-    - apt-get update > /dev/null
-    - apt-get install -y locales > /dev/null
-    - echo "en_US UTF-8" > /etc/locale.gen
-    - locale-gen en_US.UTF-8
-    - export LANG=en_US.UTF-8
-    - export LANGUAGE=en_US:en
-    - export LC_ALL=en_US.UTF-8
-    - mv ${CONDA_ROOT}/conda-bld .
-    - ./_ci/install.sh _ci master #updates ci support scripts
-    - ./_ci/before_build.sh
-    - mv conda-bld ${CONDA_ROOT}
-  script:
-    - export BEAT_BROWSER_TESTS=true
-    - BEAT_BROWSER_TESTS=true BOB_TEST_ONLY=true ./_ci/build.sh
-  after_script:
-    - ./_ci/after_build.sh
-
-
-browser_linux_36:
-  <<: *linux_browser_test_job
-  variables:
-    PYTHON_VERSION: "3.6"
-  dependencies:
-    - build_linux_36
-  tags:
-    - docker
-
-
 # Deploy targets
 .deploy_template: &deploy_job
   stage: deploy