ci: Stop running failing tests
authorMatthias Clasen <mclasen@redhat.com>
Wed, 3 May 2023 18:41:37 +0000 (14:41 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 3 May 2023 18:42:10 +0000 (14:42 -0400)
This makes the test output much harder to read,
and is just a waste of time.

.gitlab-ci/run-tests.sh

index e06668ec8cda4a6c2ce25cec1f29b769c094b900..dfa3889756f83d5f18947e8cf84df14ba2ccdf65 100755 (executable)
@@ -28,13 +28,6 @@ case "${backend}" in
     # generate the reports
     exit_code=$?
 
-    xvfb-run -a -s "-screen 0 1024x768x24 -noreset" \
-          meson test -C ${builddir} \
-                --timeout-multiplier "${multiplier}" \
-                --print-errorlogs \
-                --setup=${backend}_unstable \
-                --suite=flaky \
-                --suite=failing || true
     ;;
 
   wayland*)
@@ -55,13 +48,6 @@ case "${backend}" in
                 --no-suite=gsk-compare-broadway
     exit_code=$?
 
-    meson test -C ${builddir} \
-                --timeout-multiplier "${multiplier}" \
-                --print-errorlogs \
-                --setup=${backend}_unstable \
-                --suite=flaky \
-                --suite=failing || true
-
     kill ${compositor}
     ;;
 
@@ -84,13 +70,6 @@ case "${backend}" in
     # don't let Broadway failures fail the run, for now
     exit_code=0
 
-    meson test -C ${builddir} \
-                --timeout-multiplier "${multiplier}" \
-                --print-errorlogs \
-                --setup=${backend}_unstable \
-                --suite=flaky \
-                --suite=failing || true
-
     kill ${server}
     ;;