-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: streamline argument parsing in coverage scripts
- Loading branch information
1 parent
781b2d7
commit c3cbd55
Showing
8 changed files
with
6 additions
and
147 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,16 @@ | ||
out: "coverage" | ||
connect-timeout: 30 | ||
scope-output: ["lib", "src"] | ||
resume-isolates: false | ||
include-dart: false | ||
function-coverage: true | ||
branch-coverage: false | ||
wait-paused: true | ||
base-directory: "." | ||
bazel: false | ||
bazel-workspace: null | ||
in: "coverage.json" | ||
package: "." | ||
package-name: "My Dart Package" | ||
report-on: ["lib", "bin"] | ||
ignore-files: ["test"] | ||
sdk-root: "." | ||
workers: 2 | ||
check-ignore: false | ||
verbose: true | ||
lcov: true | ||
pretty-print: false | ||
pretty-print-func: false | ||
pretty-print-branch: false | ||
test: "test" |
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
5 changes: 0 additions & 5 deletions
5
pkgs/coverage/test/test_coverage_options/partial_fields2.yaml
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,20 +1,15 @@ | ||
scope-output: | ||
- 'lib' | ||
- 'tools' | ||
include-dart: false | ||
branch-coverage: false | ||
wait-paused: false | ||
connect-timeout: 15 | ||
|
||
bazel: true | ||
check-ignore: true | ||
in: 'custom_coverage.json' | ||
out: 'custom_lcov.info' | ||
package: '.' | ||
report-on: | ||
- 'src' | ||
- 'scripts' | ||
sdk-root: './dart-sdk' | ||
|
||
test: 'custom_test' | ||
function-coverage: true |
Oops, something went wrong.