File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515# Build the manager binary
16- FROM golang:1.22.0 as builder
16+ FROM golang:1.22.0 AS builder
1717WORKDIR /workspace
1818
1919# Run this with docker build --build_arg goproxy=$(go env GOPROXY) to override the goproxy
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ ginkgo.focus: \[Conformance\]
22ginkgo.skip : .*\[Serial\].*
33disable-log-dump : true
44ginkgo.show-node-events : true
5- ginkgo.slowSpecThreshold : 120.0
6- ginkgo.flakeAttempts : 3
5+ ginkgo.slow-spec-threshold : 120s
6+ ginkgo.flake-attempts : 3
77ginkgo.trace : true
88ginkgo.timeout : 3h
99ginkgo.v : true
Original file line number Diff line number Diff line change 11ginkgo.focus : \[Conformance\]
22disable-log-dump : true
33ginkgo.show-node-events : true
4- ginkgo.slowSpecThreshold : 120.0
5- ginkgo.flakeAttempts : 3
4+ ginkgo.slow-spec-threshold : 120s
5+ ginkgo.flake-attempts : 3
66ginkgo.trace : true
77ginkgo.timeout : 3h
88ginkgo.v : true
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import (
2525
2626 . "github.com/onsi/ginkgo/v2"
2727 . "github.com/onsi/gomega"
28+ ctrl "sigs.k8s.io/controller-runtime"
2829
2930 "sigs.k8s.io/cluster-api-provider-openstack/test/e2e/shared"
3031)
@@ -38,6 +39,7 @@ func init() {
3839
3940func TestConformance (t * testing.T ) {
4041 RegisterFailHandler (Fail )
42+ ctrl .SetLogger (GinkgoLogr )
4143 RunSpecs (t , "capo-conformance" )
4244}
4345
You can’t perform that action at this time.
0 commit comments