From 593fd2c99402e82436bf6402ffe99cc7834bcc7c Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 27 Nov 2018 13:41:51 +0700 Subject: [PATCH] run tests with race detector on CircleCI --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f357497..47e37632 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,10 +23,13 @@ defaults: &defaults command: ginkgo -race -randomizeAllSpecs -trace benchmark -- -samples=1 -size=10 - run: name: "Run tools tests" - command: ginkgo -r -v -randomizeAllSpecs -trace integrationtests/tools + command: ginkgo -race -r -v -randomizeAllSpecs -trace integrationtests/tools - run: name: "Run self integration tests" command: ginkgo -v -randomizeAllSpecs -trace integrationtests/self + - run: + name: "Run self integration tests with race detector" + command: ginkgo -race -v -randomizeAllSpecs -trace integrationtests/self version: 2 jobs: