From 2b2897010549c96632f211076b6502fd66377837 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Wed, 8 Apr 2026 13:23:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20add=20-coverprofile=20fla?= =?UTF-8?q?g=20to=20BDD=20tests=20to=20generate=20coverage.out=20file=20fo?= =?UTF-8?q?r=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/run-bdd-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-bdd-tests.sh b/scripts/run-bdd-tests.sh index 8a31ca6..3289fea 100755 --- a/scripts/run-bdd-tests.sh +++ b/scripts/run-bdd-tests.sh @@ -95,7 +95,7 @@ else fi # Run tests with proper coverage measurement -test_output=$(go test ./features/... -v -cover -coverpkg=./... 2>&1) +test_output=$(go test ./features/... -v -cover -coverpkg=./... -coverprofile=coverage.out 2>&1) test_exit_code=$? echo "$test_output"