From 7f0a40c3a4eedebc208d314cbb99babb91fecc09 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Wed, 17 Jul 2019 15:02:04 +0100 Subject: [PATCH] Enable the race detector and soft fail tests --- .buildkite/pipeline.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 9d755a24..6700bd5d 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -35,15 +35,17 @@ steps: limit: 3 - command: - - "go test ./..." + - "go test -race ./..." label: "\U0001F9EA Unit tests / :go: 1.11" plugins: - docker#v3.0.1: image: "golang:1.11" + soft_fail: true - command: - - "go test ./..." + - "go test -race ./..." label: "\U0001F9EA Unit tests / :go: 1.12" plugins: - docker#v3.0.1: image: "golang:1.12" + soft_fail: true