From d3ccce4a3ad34a2a731850a1b2c6806bfb0d1e32 Mon Sep 17 00:00:00 2001 From: "diamondburned (Forefront)" Date: Mon, 20 Jan 2020 03:09:31 -0800 Subject: [PATCH] Removed race tests in CI --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a097286..f4b4e91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: golang:alpine variables: GO111MODULE: "on" + CGO_ENABLED: 0 before_script: - apk add git @@ -12,7 +13,7 @@ stages: unit_test: stage: test script: - - go test -race -v ./... + - go test -v ./... integration_test: stage: test @@ -20,5 +21,5 @@ integration_test: variables: - $BOT_TOKEN script: - - go test -tags integration -race -v ./... + - go test -tags integration -v ./...