Skip to content

Commit 978ab38

Browse files
committed
Run test withoyt race flag untill we adopt new structure
1 parent 89aa171 commit 978ab38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ require (
77
github.com/fsnotify/fsnotify v1.5.1
88
github.com/go-logr/logr v1.2.0
99
github.com/go-logr/zapr v1.2.0
10-
github.com/onsi/ginkgo v1.16.5
1110
github.com/onsi/ginkgo/v2 v2.1.1
1211
github.com/onsi/gomega v1.18.0
1312
github.com/prometheus/client_golang v1.11.0
@@ -43,6 +42,7 @@ require (
4342
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
4443
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4544
github.com/modern-go/reflect2 v1.0.2 // indirect
45+
github.com/onsi/ginkgo v1.16.5 // indirect
4646
github.com/pkg/errors v0.9.1 // indirect
4747
github.com/prometheus/common v0.28.0 // indirect
4848
github.com/prometheus/procfs v0.6.0 // indirect

hack/test-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ source $(dirname ${BASH_SOURCE})/common.sh
2020

2121
header_text "running go test"
2222

23-
go test -race ${P_FLAG} ${MOD_OPT} ./...
23+
go test ${P_FLAG} ${MOD_OPT} ./...
2424

2525
if [[ -n ${ARTIFACTS:-} ]]; then
2626
if grep -Rin '<failure type="Failure">' ${ARTIFACTS}/*; then exit 1; fi

0 commit comments

Comments
 (0)