From 78c0018ca07af638e87d9df1a45169481bc4c17b Mon Sep 17 00:00:00 2001 From: andrew_li <6263928+xyz-li@users.noreply.github.com> Date: Wed, 22 Feb 2023 23:17:56 +0800 Subject: [PATCH] fix make verify (#115871) --- hack/verify-conformance-requirements.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-conformance-requirements.sh b/hack/verify-conformance-requirements.sh index c4f01d60f9a..881be8c8a47 100755 --- a/hack/verify-conformance-requirements.sh +++ b/hack/verify-conformance-requirements.sh @@ -32,7 +32,7 @@ cd "${KUBE_ROOT}" errors=() # Check conformance tests follow the requirements as https://git.k8s.io/community/contributors/devel/sig-architecture/conformance-tests.md#conformance-test-requirements -if ! failedLint=$(go run "${KUBE_ROOT}"/hack/conformance/check_conformance_test_requirements.go "${KUBE_ROOT}"/test/e2e/) +if ! failedLint=$(GO111MODULE=on GOPROXY=off go run hack/conformance/check_conformance_test_requirements.go "${KUBE_ROOT}"/test/e2e/) then errors+=( "${failedLint}" ) fi