mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-03 20:40:26 -05:00
Add .bazelrc with flaky_test_attempts.
This commit is contained in:
parent
093ceb9528
commit
0ddd036cd3
2 changed files with 7 additions and 1 deletions
6
.bazelrc
Normal file
6
.bazelrc
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Show us information about failures.
|
||||
build --verbose_failures
|
||||
test --test_output=errors
|
||||
|
||||
# Retry tests up to 3 times if they fail.
|
||||
test --flaky_test_attempts=3
|
||||
2
Makefile
2
Makefile
|
|
@ -498,7 +498,7 @@ endef
|
|||
@echo "$$BAZEL_TEST_HELP_INFO"
|
||||
else
|
||||
bazel-test:
|
||||
bazel test --test_output=errors //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/... //hack:verify-all
|
||||
bazel test //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/... //hack:verify-all
|
||||
endif
|
||||
|
||||
ifeq ($(PRINT_HELP),y)
|
||||
|
|
|
|||
Loading…
Reference in a new issue