-
Notifications
You must be signed in to change notification settings - Fork 42
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
- 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 Signed-off-by: Scott J Dickerson <[email protected]>
- Loading branch information
Showing
2 changed files
with
45 additions
and
14 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,39 @@ | ||
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 | ||
|
||
# unitests: | ||
# target: 30% | ||
# flags: | ||
# - unitests | ||
|
||
# e2etests: | ||
# target: 70% | ||
# flags: | ||
# - e2etests | ||
|
||
flags: | ||
unitests: | ||
carryforward: false | ||
e2etests: | ||
carryforward: false | ||
client: | ||
paths: | ||
- client/ | ||
server: | ||
paths: | ||
- server/ | ||
|
||
# unitests: | ||
# carryforward: false | ||
# e2etests: | ||
# carryforward: false |