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.
This commit is contained in:
James Houlahan
2022-10-26 09:25:08 +02:00
parent 2f40b030ec
commit 4f7cb43c8f

View File

@ -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