Skip to content

Commit 4c3ebd3

Browse files
chore(coverage): remove stderr redirection for debugging
1 parent d8dc627 commit 4c3ebd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/coverage-ci.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mkdir -p "$COVERAGE_DIR"
2828
lcov --capture --directory "$BUILD_DIR" \
2929
--output-file "$COVERAGE_DIR/coverage.info" \
3030
--ignore-errors inconsistent,format \
31-
--quiet 2>/dev/null
31+
--quiet
3232

3333
# Remove system and test files from coverage
3434
lcov --remove "$COVERAGE_DIR/coverage.info" \
@@ -39,7 +39,7 @@ lcov --remove "$COVERAGE_DIR/coverage.info" \
3939
'*/src/main.cpp' \
4040
--output-file "$COVERAGE_DIR/coverage.info" \
4141
--ignore-errors unused \
42-
--quiet 2>/dev/null
42+
--quiet
4343

4444
# Show summary
4545
echo ""

0 commit comments

Comments
 (0)