From 5f57b79dc02963d6386c514b236ced34ebca7e64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20L=C3=B3pez?= <1953782+julio-lopez@users.noreply.github.com> Date: Mon, 5 Aug 2024 15:56:49 -0700 Subject: [PATCH] chore(ci): silence TestIndexBlobManagerStress output on failure (#4028) --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1f8012406..f0892878f 100644 --- a/Makefile +++ b/Makefile @@ -275,10 +275,14 @@ test-with-coverage: $(gotestsum) $(TESTING_ACTION_EXE) test: GOTESTSUM_FLAGS=--format=$(GOTESTSUM_FORMAT) --no-summary=skipped --jsonfile=.tmp.unit-tests.json test: export TESTING_ACTION_EXE ?= $(TESTING_ACTION_EXE) -test: $(gotestsum) $(TESTING_ACTION_EXE) - $(GO_TEST) $(UNIT_TEST_RACE_FLAGS) -tags testing -count=$(REPEAT_TEST) -timeout $(UNIT_TESTS_TIMEOUT) ./... +test: $(gotestsum) $(TESTING_ACTION_EXE) test-index-blob-v0 + $(GO_TEST) $(UNIT_TEST_RACE_FLAGS) -tags testing -count=$(REPEAT_TEST) -timeout $(UNIT_TESTS_TIMEOUT) -skip '^TestIndexBlobManagerStress$$' ./... -$(gotestsum) tool slowest --jsonfile .tmp.unit-tests.json --threshold 1000ms +test-index-blob-v0: GOTESTSUM_FLAGS=--format=testname --no-summary=skipped +test-index-blob-v0: $(gotestsum) $(TESTING_ACTION_EXE) + $(GO_TEST) $(UNIT_TEST_RACE_FLAGS) -tags testing -count=$(REPEAT_TEST) -timeout $(UNIT_TESTS_TIMEOUT) -run '^TestIndexBlobManagerStress$$' ./repo/content/indexblob/... + provider-tests-deps: $(gotestsum) $(rclone) $(MINIO_MC_PATH) PROVIDER_TEST_TARGET=...