We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be56de commit 91c462dCopy full SHA for 91c462d
.github/workflows/build-test-publish.yml
@@ -46,7 +46,7 @@ jobs:
46
run: make install-tools kubebuilder-assets just-unit-tests
47
48
- name: Integration tests
49
- run: GINKGO_EXTRA="--flake-attempts=3" make integration-tests
+ run: make integration-tests
50
51
- name: Notify Google Chat
52
if: failure()
Makefile
@@ -96,7 +96,7 @@ integration-tests::manifests
96
integration-tests::just-integration-tests
97
98
just-integration-tests: $(KUBEBUILDER_ASSETS)
99
- ginkgo --randomize-all -r -p $(GINKGO_EXTRA) controllers/
+ ginkgo --randomize-all -r $(GINKGO_EXTRA) controllers/
100
101
.PHONY: local-tests
102
local-tests: unit-tests integration-tests ## Run all local tests (unit & integration)
0 commit comments