diff --git a/Makefile b/Makefile index df1b1513e6c..11e6860fe59 100644 --- a/Makefile +++ b/Makefile @@ -517,7 +517,7 @@ bazel-test: @echo "$$BAZEL_TEST_HELP_INFO" else bazel-test: - bazel test --flaky_test_attempts=3 //cmd/... //pkg/... //federation/... //plugin/... //third_party/... //hack/... //hack:verify-all //vendor/k8s.io/... + bazel test --test_tag_filters=-integration --flaky_test_attempts=3 //cmd/... //pkg/... //federation/... //plugin/... //third_party/... //hack/... //hack:verify-all //vendor/k8s.io/... endif ifeq ($(PRINT_HELP),y) diff --git a/test/integration/federation/BUILD b/test/integration/federation/BUILD index a989983eb1c..dd9dcd22af8 100644 --- a/test/integration/federation/BUILD +++ b/test/integration/federation/BUILD @@ -13,7 +13,10 @@ go_test( "api_test.go", "crud_test.go", ], - tags = ["automanaged"], + tags = [ + "automanaged", + "integration", + ], deps = [ "//federation/apis/federation/v1beta1:go_default_library", "//federation/pkg/federatedtypes:go_default_library",