mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-10-31 20:14:21 +00:00
Removed race tests in CI
This commit is contained in:
parent
8b8f0740a2
commit
d3ccce4a3a
|
@ -2,6 +2,7 @@ image: golang:alpine
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
GO111MODULE: "on"
|
GO111MODULE: "on"
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- apk add git
|
- apk add git
|
||||||
|
@ -12,7 +13,7 @@ stages:
|
||||||
unit_test:
|
unit_test:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- go test -race -v ./...
|
- go test -v ./...
|
||||||
|
|
||||||
integration_test:
|
integration_test:
|
||||||
stage: test
|
stage: test
|
||||||
|
@ -20,5 +21,5 @@ integration_test:
|
||||||
variables:
|
variables:
|
||||||
- $BOT_TOKEN
|
- $BOT_TOKEN
|
||||||
script:
|
script:
|
||||||
- go test -tags integration -race -v ./...
|
- go test -tags integration -v ./...
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue