Skip to content

Commit f9e4124

Browse files
authored
ci: don't output code coverage table in logs (#5813)
Problem: c8 was not given a reporter, therefore it defaulted to `text` which is the terminal. Solution: Set it to `lcov`, which is what we have been using previously. Note: More work may be needed on the .c8rc.json files. We might not need the one for core/ anymore. They may not be configured in the optimal way. Is it behaving how we want it to? --- <!--- REMINDER: Ensure that your PR meets the guidelines in CONTRIBUTING.md --> License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent c716995 commit f9e4124

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/toolkit/.c8rc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"report-dir": "../../coverage/toolkit",
3+
"reporter": ["lcov"],
4+
"all": true,
5+
"exclude": ["**/test*/**", "**/node_modules/**"]
6+
}

0 commit comments

Comments
 (0)