diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 700b7f7fc49eb357eb6735981c7746d05b775825..1180735158dfb0eb5754f949dd7748895b621c62 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,12 +14,12 @@
   script:
     # Let's run the tests. Substitute `coverage = false` below, if you do not
     # want coverage results.
-    - /opt/julia/bin/julia -e 'Pkg.rm("BallAndBeam");Pkg.clone(pwd()); Pkg.test("BallAndBeam",coverage = true)'
+    - /opt/julia/bin/julia -e 'Pkg.rm("BallAndBeam");Pkg.clone(pwd()); Pkg.test("BallAndBeam",coverage = false)'
     #- /opt/julia/bin/julia -e 'Pkg.update();Pkg.test("BallAndBeam", coverage = true)'
     # Comment out below if you do not want coverage results.
-    - /opt/julia/bin/julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("BallAndBeam"));
-      using Coverage; cl, tl = get_summary(process_folder());
-      println("(", cl/tl*100, "%) covered")'
+    #- /opt/julia/bin/julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("BallAndBeam"));
+    #  using Coverage; cl, tl = get_summary(process_folder());
+    #  println("(", cl/tl*100, "%) covered")'
 
 # Name a test and select an appropriate image.
 test:0.6.0: