migrate to Ginkgo v2

This commit is contained in:
Marten Seemann
2022-10-11 13:10:27 +04:00
parent c9a878858e
commit 870fbe7ab0
186 changed files with 267 additions and 243 deletions

View File

@@ -20,22 +20,22 @@ jobs:
- checkout
- run:
name: "Setup build environment"
command: go install github.com/onsi/ginkgo/ginkgo
command: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- run:
name: "Build infos"
command: go version
- run:
name: "Run tools tests"
command: ginkgo -race -r -v -randomizeAllSpecs -trace integrationtests/tools
command: ginkgo -race -r -v -randomize-all -trace integrationtests/tools
- run:
name: "Run self integration tests"
command: ginkgo -v -randomizeAllSpecs -trace integrationtests/self
command: ginkgo -v -randomize-all -trace integrationtests/self
- run:
name: "Run self integration tests with race detector"
command: ginkgo -race -v -randomizeAllSpecs -trace integrationtests/self
command: ginkgo -race -v -randomize-all -trace integrationtests/self
- run:
name: "Run self integration tests with qlog"
command: ginkgo -v -randomizeAllSpecs -trace integrationtests/self -- -qlog
command: ginkgo -v -randomize-all -trace integrationtests/self -- -qlog
go118:
<<: *test
go119: