Skip to content

Commit 02007e0

Browse files
committed
tests/tools: update ginkgo
Update the version of ginkgo that we build for use by our e2e tests. Signed-off-by: Nalin Dahyabhai <[email protected]>
1 parent 0fbbd55 commit 02007e0

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

tests/tools/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $(BUILDDIR): \
2222
$(BUILDDIR)/golangci-lint
2323

2424
$(BUILDDIR)/ginkgo:
25-
$(GO_BUILD) -o $@ ./vendor/github.com/onsi/ginkgo/ginkgo
25+
$(GO_BUILD) -o $@ ./vendor/github.com/onsi/ginkgo/v2/ginkgo
2626

2727
$(BUILDDIR)/go-md2man:
2828
$(GO_BUILD) -o $@ ./vendor/github.com/cpuguy83/go-md2man/v2

tests/tools/go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module github.com/containers/buildah/tests/tools
22

3-
go 1.17
3+
go 1.22.0
44

55
require (
66
github.com/cpuguy83/go-md2man/v2 v2.0.2
77
github.com/golangci/golangci-lint v1.51.2
8-
github.com/onsi/ginkgo v1.16.5
8+
github.com/onsi/ginkgo/v2 v2.8.0
9+
github.com/onsi/gomega v1.26.0
910
)
1011

1112
require (

tests/tools/tools.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ package tools
99
import (
1010
_ "github.com/cpuguy83/go-md2man/v2"
1111
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
12-
_ "github.com/onsi/ginkgo/ginkgo/v2"
12+
_ "github.com/onsi/ginkgo/v2/ginkgo"
13+
_ "github.com/onsi/gomega"
1314
)

0 commit comments

Comments
 (0)