From bd6cbb3f84b3f108685208a0455dd04beebcf43d Mon Sep 17 00:00:00 2001 From: Artem Fetishev <149964189+rtm0@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:47:32 +0100 Subject: [PATCH] Makefile: remove -v flag from integration tests This is a follow-up for 49fe403af1804a87d8d3035c998b3728d6e4c65d Commit disables the verbosity in integration tests after confirming that the tests run in both master and cluster branches. Signed-off-by: Artem Fetishev (cherry picked from commit 61532930e680eaf58f627a2a54ad58cbcc6fa0b1) Signed-off-by: hagen1778 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 582a8c8a0..03b42a560 100644 --- a/Makefile +++ b/Makefile @@ -219,7 +219,7 @@ test-full-386: DISABLE_FSYNC_FOR_TESTING=1 GOARCH=386 go test -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/... integration-test: all - go test ./apptest/... -skip="^TestSingle.*" -v + go test ./apptest/... -skip="^TestSingle.*" benchmark: go test -bench=. ./lib/...