mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 04:36:43 +00:00
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:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user