From 4f7cb43c8f8d0fbf7a52136eae2e5f69f97d8d84 Mon Sep 17 00:00:00 2001 From: James Houlahan Date: Wed, 26 Oct 2022 09:25:08 +0200 Subject: [PATCH] Other(CI): Allow race checks to fail Although most race conditions have been eliminated, there are some known ones, particularly in the go-imap client used by the integration tests, which is out of our control. Over time we will hopefully eliminate these but for now, let's not rely on the race checks consistently passing. --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bb868dd3..8cef24e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,6 +40,13 @@ test: stage: test script: - make test + tags: + - medium + +test-race: + stage: test + allow_failure: true + script: - make test-race tags: - medium @@ -48,6 +55,13 @@ test-integration: stage: test script: - make test-integration + tags: + - large + +test-integration-race: + stage: test + allow_failure: true + script: - make test-integration-race tags: - large