Skip to content

Commit

Permalink
Retain formatting lost by sed prefixer
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Aug 2, 2024
1 parent b056f0f commit 0363721
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ jobs:
# Start unit tests in the background
(
cd unit_tests
vendor/bin/pest --coverage-php=../coverage/unit.cov --testsuite=UnitFramework 2>&1 | sed 's/^/[UNIT] /' &
vendor/bin/pest --coverage-php=../coverage/unit.cov--testsuite=UnitFramework 2>&1 | sed -E $'s/^/\x1b[36m[UNIT]\x1b[0m /' &
) &
# Start feature tests in the background
(
cd feature_tests
vendor/bin/pest --coverage-php=../coverage/feature.cov --testsuite=FeatureHyde,FeatureFramework,Publications,"Realtime Compiler" 2>&1 | sed 's/^/[FEATURE] /' &
vendor/bin/pest --coverage-php=../coverage/feature.cov --testsuite=FeatureHyde,FeatureFramework,Publications,"Realtime Compiler" 2>&1 | sed -E $'s/^/\x1b[35m[FEATURE]\x1b[0m /' &
) &
# Wait for both background processes to finish
Expand Down

0 comments on commit 0363721

Please sign in to comment.