File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
# Build the manager binary
16
- FROM golang:1.22.0 as builder
16
+ FROM golang:1.22.0 AS builder
17
17
WORKDIR /workspace
18
18
19
19
# 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\]
2
2
ginkgo.skip : .*\[Serial\].*
3
3
disable-log-dump : true
4
4
ginkgo.show-node-events : true
5
- ginkgo.slowSpecThreshold : 120.0
6
- ginkgo.flakeAttempts : 3
5
+ ginkgo.slow-spec-threshold : 120s
6
+ ginkgo.flake-attempts : 3
7
7
ginkgo.trace : true
8
8
ginkgo.timeout : 3h
9
9
ginkgo.v : true
Original file line number Diff line number Diff line change 1
1
ginkgo.focus : \[Conformance\]
2
2
disable-log-dump : true
3
3
ginkgo.show-node-events : true
4
- ginkgo.slowSpecThreshold : 120.0
5
- ginkgo.flakeAttempts : 3
4
+ ginkgo.slow-spec-threshold : 120s
5
+ ginkgo.flake-attempts : 3
6
6
ginkgo.trace : true
7
7
ginkgo.timeout : 3h
8
8
ginkgo.v : true
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import (
25
25
26
26
. "github.com/onsi/ginkgo/v2"
27
27
. "github.com/onsi/gomega"
28
+ ctrl "sigs.k8s.io/controller-runtime"
28
29
29
30
"sigs.k8s.io/cluster-api-provider-openstack/test/e2e/shared"
30
31
)
@@ -38,6 +39,7 @@ func init() {
38
39
39
40
func TestConformance (t * testing.T ) {
40
41
RegisterFailHandler (Fail )
42
+ ctrl .SetLogger (GinkgoLogr )
41
43
RunSpecs (t , "capo-conformance" )
42
44
}
43
45
You can’t perform that action at this time.
0 commit comments