forked from konveyor/tackle2-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌱 Update codecov settings, make coverage non-blocking (konveyor#1217)
Summary of changes: - add projects and flags for `client` and `server`, but make the coverage tests non-blocking - disable the `default` project and just rely on the flagged projects - remove `unitests` and `e2etests` projects and flags since they don't make sense in the current repo - github workflow `ci-actions.yml` updated to upload coverage once for each flag References: - Non-blocking: https://docs.codecov.com/docs/common-recipe-list#set-non-blocking-status-checks - Flags: https://docs.codecov.com/docs/flags - `target: auto`: https://docs.codecov.com/docs/commit-status#target Signed-off-by: Scott J Dickerson <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: 75% | ||
unitests: | ||
target: 30% | ||
default: false | ||
|
||
client: | ||
informational: true | ||
target: auto | ||
flags: | ||
- unitests | ||
e2etests: | ||
target: 70% | ||
- client | ||
|
||
server: | ||
informational: true | ||
target: auto | ||
flags: | ||
- e2etests | ||
- server | ||
|
||
flags: | ||
unitests: | ||
carryforward: false | ||
e2etests: | ||
carryforward: false | ||
client: | ||
paths: | ||
- client/ | ||
server: | ||
paths: | ||
- server/ |