Skip to content

Commit a96d907

Browse files
committed
✅ Update coverage minimums
1 parent 37ae001 commit a96d907

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.envrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export K_SOUP_COV_DO=true # Means you want code coverage
2121
export K_SOUP_COV_COMMAND_NAME="Test Coverage"
2222
# Available formats are html, xml, rcov, lcov, json, tty
2323
export K_SOUP_COV_FORMATTERS="html,xml,rcov,lcov,json,tty"
24-
export K_SOUP_COV_MIN_BRANCH=70 # Means you want to enforce X% branch coverage
25-
export K_SOUP_COV_MIN_LINE=93 # Means you want to enforce X% line coverage
24+
export K_SOUP_COV_MIN_BRANCH=78 # Means you want to enforce X% branch coverage
25+
export K_SOUP_COV_MIN_LINE=98 # Means you want to enforce X% line coverage
2626
export K_SOUP_COV_MIN_HARD=true # Means you want the build to fail if the coverage thresholds are not met
2727
export K_SOUP_COV_MULTI_FORMATTERS=true
2828
export K_SOUP_COV_OPEN_BIN= # Means don't try to open coverage results in browser

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ permissions:
66
id-token: write
77

88
env:
9-
K_SOUP_COV_MIN_BRANCH: 70
10-
K_SOUP_COV_MIN_LINE: 93
9+
K_SOUP_COV_MIN_BRANCH: 78
10+
K_SOUP_COV_MIN_LINE: 98
1111
K_SOUP_COV_MIN_HARD: true
1212
K_SOUP_COV_FORMATTERS: "xml,rcov,lcov,tty"
1313
K_SOUP_COV_DO: true
@@ -115,7 +115,7 @@ jobs:
115115
hide_complexity: true
116116
indicators: true
117117
output: both
118-
thresholds: '93 70'
118+
thresholds: '98 78'
119119
continue-on-error: ${{ matrix.experimental != 'false' }}
120120

121121
- name: Add Coverage PR Comment

0 commit comments

Comments
 (0)