-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): adjust codecov settings and update step-generation workflow (
#17424) - Most js projects were not uploading to codecov before the change in #17406 to produce lcov output. - Now that they are, we don't want ❌ everywhere so let us adjust the patch threshold and catch up the ignore list. - Tackle any specific areas of coverage deficit strategically. - In addition convert `.github/workflows/step-generation-test.yaml` to the pattern of PD like in #17406
- Loading branch information
Showing
4 changed files
with
62 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,55 @@ | ||
version: 2.0 | ||
|
||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: '10' | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 0 | ||
|
||
comment: | ||
layout: 'reach, diff, flags, files' | ||
|
||
ignore: | ||
- '**/node_modules' | ||
- 'webpack-config' | ||
- 'hardware-testing' | ||
- '**/*.md' | ||
- '**/*.yaml' | ||
- 'webpack-config/**' | ||
- 'hardware-testing/**' | ||
- 'abr-testing/**' | ||
- 'test-data-generation/**' | ||
- 'performance-metrics/**' | ||
- 'package-testing/**' | ||
- 'opentrons-ai-server/**' | ||
- 'opentrons-ai-client/**' | ||
- 'g-code-testing/**' | ||
- 'api-client/**' | ||
- 'analyses-snapshot-testing/**' | ||
- '.storybook/**' | ||
- 'react-api-client/**' | ||
- 'scripts/**' | ||
- '.github/**' | ||
- '**/build/**' | ||
- '**/dist/**' | ||
- '**/node_modules/**' | ||
- '**/{test,tests,__tests__,__mocks__,mocks}/**' | ||
- '**/*.{md,yaml,yml,json,rst}' | ||
- '**/Makefile' | ||
- '**/*.in' | ||
- '**/*.json' | ||
- '**/*.config.js' | ||
- '**/*.{in,ini,lock,toml,cfg}' | ||
- '**/setup.py' | ||
- '**/requirements.txt' | ||
- '**/.flake8' | ||
- '**/.coveragerc' | ||
- '**/.prettierrc.js' | ||
- '**/.eslintrc.js' | ||
- '**/Pipfile' | ||
- '**/Dockerfile*' | ||
- '**/*.{config.js,config.ts}' | ||
- '**/*.mk' | ||
- '**/*.stories.tsx' | ||
|
||
comment: | ||
# add flags to `layout` configuration to show up in the PR comment | ||
layout: 'reach, diff, flags, files' | ||
- '**/*.{mjs,css,cjs,mts}' | ||
|
||
flag_management: | ||
default_rules: | ||
carryforward: true | ||
|
||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 10 |
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
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