From ccfd6d75794581ec4c86475937305cc154d0f94c Mon Sep 17 00:00:00 2001 From: Mike Fridman Date: Wed, 20 Nov 2024 09:47:34 -0500 Subject: [PATCH] ci: update testing output --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9f9b42731..a3882f617 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ tools: test-packages: go test $(GO_TEST_FLAGS) $$(go list ./... | grep -v -e /bin -e /cmd -e /examples) |\ - tparse --follow -sort=elapsed + tparse --follow -sort=elapsed -trimpath=auto -all test-packages-short: go test -test.short $(GO_TEST_FLAGS) $$(go list ./... | grep -v -e /bin -e /cmd -e /examples) |\ @@ -96,7 +96,7 @@ test-starrocks: add-gowork go test $(GO_TEST_FLAGS) ./internal/testing/integration -run='TestStarrocks' | tparse --follow -sort=elapsed test-integration: add-gowork - go test $(GO_TEST_FLAGS) ./internal/testing/integration/... | tparse --follow -sort=elapsed + go test $(GO_TEST_FLAGS) ./internal/testing/integration/... | tparse --follow -sort=elapsed -trimpath=auto -all # # Docker-related targets