1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-01-20 19:47:12 +00:00

CI: Unit and integration tests are now mutually exclusive

This commit is contained in:
diamondburned (Forefront) 2020-05-30 15:15:32 -07:00
parent f91518f3c6
commit 783dfe7ba6

View file

@ -3,33 +3,45 @@
"variables": {
"GO111MODULE": "on",
"CGO_ENABLED": "0",
"COV": "/tmp/cov_results"
"COV": "/tmp/cov_results",
"dismock": "github.com/mavolin/dismock/pkg/dismock",
# used only in integration_test
"tested": "./api,./gateway,./bot,./discord"
},
"before_script": [
"apk add git"
],
"stages": [
"build",
"test"
],
"build_test": {
"stage": "test",
"stage": "build",
"script": [
"go build ./..."
]
},
"unit_test": {
"stage": "test",
"timeout": "2m", # 2 minutes
"script": [
# Don't run the test if we have a $BOT_TOKEN, because
# integration_test will run instead.
"[ $BOT_TOKEN ] && exit",
"go test -v -coverprofile $COV ./...",
"go tool cover -func $COV"
]
},
"integration_test": {
"stage": "test",
"timeout": "2m", # 2 minutes
"script": [
"[ ! \"$BOT_TOKEN\" ] && exit",
# Run the test only if we have $BOT_TOKEN, else fallback to unit
# tests.
"[ ! $BOT_TOKEN ] && exit",
"go get ./...",
"timeout 120 go test -coverpkg \"./api,./gateway,./bot,./discord\" -coverprofile $COV -tags integration -v ./... github.com/mavolin/dismock/pkg/dismock",
# Test this package along with dismock.
"go test -coverpkg $tested -coverprofile $COV -tags integration -v ./... $dismock",
"go tool cover -func $COV"
]
}