Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop gofmt and golangci-lint from bazel test #24260

Merged
merged 1 commit into from
Nov 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion hack/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,13 @@ test_suite(
name = "verify-all",
tests = [
":verify-linters",
"@io_k8s_repo_infra//hack:verify-all",
# Gofmt and golangci-lint have been migrated to make rules, if desired run
# bazel test @io_k8s_repo_infra//hack:verify-gofmt
# bazel test @io_k8s_repo_infra//hack:verify-golangci-lint
# Ref: https://github.com/kubernetes/test-infra/issues/23796
"@io_k8s_repo_infra//hack:verify-bazel",
"@io_k8s_repo_infra//hack:verify-boilerplate",
"@io_k8s_repo_infra//hack:verify-deps",
],
)

Expand Down