Skip to content

Commit 05e00fb

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 05e00fb

File tree

322 files changed

+194778
-10823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+194778
-10823
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: 5 additions & 4 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 (
@@ -67,6 +68,7 @@ require (
6768
github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect
6869
github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect
6970
github.com/google/go-cmp v0.5.9 // indirect
71+
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
7072
github.com/gordonklaus/ineffassign v0.0.0-20230107090616-13ace0543b28 // indirect
7173
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
7274
github.com/gostaticanalysis/comment v1.4.2 // indirect
@@ -111,7 +113,6 @@ require (
111113
github.com/nishanths/exhaustive v0.9.5 // indirect
112114
github.com/nishanths/predeclared v0.2.2 // indirect
113115
github.com/nunnatsa/ginkgolinter v0.8.1 // indirect
114-
github.com/nxadm/tail v1.4.8 // indirect
115116
github.com/olekukonko/tablewriter v0.0.5 // indirect
116117
github.com/pelletier/go-toml v1.9.5 // indirect
117118
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
@@ -170,13 +171,13 @@ require (
170171
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
171172
golang.org/x/exp/typeparams v0.0.0-20230203172020-98cc5a0785f9 // indirect
172173
golang.org/x/mod v0.8.0 // indirect
174+
golang.org/x/net v0.6.0 // indirect
173175
golang.org/x/sync v0.1.0 // indirect
174176
golang.org/x/sys v0.5.0 // indirect
175177
golang.org/x/text v0.7.0 // indirect
176178
golang.org/x/tools v0.6.0 // indirect
177179
google.golang.org/protobuf v1.28.0 // indirect
178180
gopkg.in/ini.v1 v1.67.0 // indirect
179-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
180181
gopkg.in/yaml.v2 v2.4.0 // indirect
181182
gopkg.in/yaml.v3 v3.0.1 // indirect
182183
honnef.co/go/tools v0.4.2 // indirect

tests/tools/go.sum

Lines changed: 1 addition & 643 deletions
Large diffs are not rendered by default.

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
)

tests/tools/vendor/github.com/google/pprof/AUTHORS

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/tools/vendor/github.com/google/pprof/CONTRIBUTORS

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/tools/vendor/github.com/google/pprof/LICENSE

Lines changed: 202 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)