From b056f0ff4f815025d1eeb838d410e5fad274b51d Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Fri, 2 Aug 2024 11:42:41 +0200 Subject: [PATCH] Prefix output lines --- .github/workflows/coverage-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage-tests.yml b/.github/workflows/coverage-tests.yml index f7ee9478846..e34d89c5852 100644 --- a/.github/workflows/coverage-tests.yml +++ b/.github/workflows/coverage-tests.yml @@ -48,13 +48,13 @@ jobs: # Start unit tests in the background ( cd unit_tests - vendor/bin/pest --coverage-php=../coverage/unit.cov --testsuite=UnitFramework + vendor/bin/pest --coverage-php=../coverage/unit.cov --testsuite=UnitFramework 2>&1 | sed 's/^/[UNIT] /' & ) & # Start feature tests in the background ( cd feature_tests - vendor/bin/pest --coverage-php=../coverage/feature.cov --testsuite=FeatureHyde,FeatureFramework,Publications,"Realtime Compiler" + vendor/bin/pest --coverage-php=../coverage/feature.cov --testsuite=FeatureHyde,FeatureFramework,Publications,"Realtime Compiler" 2>&1 | sed 's/^/[FEATURE] /' & ) & # Wait for both background processes to finish