Skip to content

Commit

Permalink
e2e: skip flaky tests in nightly runs
Browse files Browse the repository at this point in the history
nightlies call `make test-e2e` so skip the
flaky tests here. Presubmit lanes (= running pre-merge)
should still run all tests

Signed-off-by: Francesco Romani <fromani@redhat.com>
  • Loading branch information
ffromani committed Jul 23, 2024
1 parent 9794263 commit e4ce506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ $(GOBINDATA_BIN):

test-e2e: $(BINDATA)
for d in core basic reboots reboots/sno deferred; do \
KUBERNETES_CONFIG="$(KUBECONFIG)" $(GO) test -v -timeout 40m ./test/e2e/$$d -ginkgo.v -ginkgo.no-color -ginkgo.fail-fast || exit; \
KUBERNETES_CONFIG="$(KUBECONFIG)" $(GO) test -v -timeout 40m ./test/e2e/$$d -ginkgo.v -ginkgo.no-color -ginkgo.fail-fast -ginkgo.label-filter=!flaky || exit; \
done

.PHONY: test-e2e-local
Expand Down

0 comments on commit e4ce506

Please sign in to comment.