Skip to content

Commit 91c462d

Browse files
committed
Integration tests should not be parallelized due to etcd interference.
1 parent 5be56de commit 91c462d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: make install-tools kubebuilder-assets just-unit-tests
4747

4848
- name: Integration tests
49-
run: GINKGO_EXTRA="--flake-attempts=3" make integration-tests
49+
run: make integration-tests
5050

5151
- name: Notify Google Chat
5252
if: failure()

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ integration-tests::manifests
9696
integration-tests::just-integration-tests
9797

9898
just-integration-tests: $(KUBEBUILDER_ASSETS)
99-
ginkgo --randomize-all -r -p $(GINKGO_EXTRA) controllers/
99+
ginkgo --randomize-all -r $(GINKGO_EXTRA) controllers/
100100

101101
.PHONY: local-tests
102102
local-tests: unit-tests integration-tests ## Run all local tests (unit & integration)

0 commit comments

Comments
 (0)