From a91b5cf3287b7741ce60362a23da1843441cf261 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 1 Nov 2021 20:28:12 +0100 Subject: [PATCH] fix: disable offline cypress tests because they are flaky (#2050) The offline cypress tests repeatedly cause failing PR checks. Although they often self correct if the test suite is re-run, it is still too much hassle for the benefit. The tests should still be run locally during development to confirm that offline functionality works. --- .github/workflows/verify.yml | 2 +- .../view/{offline.feature => offline.feature.disabled} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cypress/integration/view/{offline.feature => offline.feature.disabled} (100%) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index bdf9151e9..5734555a1 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -111,7 +111,7 @@ jobs: strategy: matrix: - containers: [1, 2, 3] + containers: [1, 2] steps: - name: Checkout diff --git a/cypress/integration/view/offline.feature b/cypress/integration/view/offline.feature.disabled similarity index 100% rename from cypress/integration/view/offline.feature rename to cypress/integration/view/offline.feature.disabled