feat: introduce very_good.yaml for param configuration#1636
Draft
unicoderbot[bot] wants to merge 12 commits into
Draft
feat: introduce very_good.yaml for param configuration#1636unicoderbot[bot] wants to merge 12 commits into
unicoderbot[bot] wants to merge 12 commits into
Conversation
Closes #360 Co-authored-by: marcossevilla <marcossevilla@users.noreply.github.com>
Member
|
@vgvbot investigate and fix CI. additionally add an e2e test that provides a |
Contributor
Author
Co-authored-by: marcossevilla <marcossevilla@users.noreply.github.com>
…very_good_cli into vgv-ai-bot/issue-360
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Warning
The coding agent reported this implementation is incomplete.
very_good.yamlis wired up for thetestcommand only; other commands and thepubspec.yamlvery_good:key remain future work, and the local analyzer/test suite could not run due to a Dart SDK version mismatch (3.11.5 available, 3.12.0 required by pubspec).This PR has been opened as a draft. Review the diff against the original issue before marking it ready for review.
Summary
Adds support for configuring CLI test parameters through a
very_good.yamlconfiguration file at the project root. This allows developers to maintain consistent configuration across local and CI environments without manually repeating flags.Changes
VeryGoodConfigloading fromvery_good.yamlfilesFlutterTestOptions.parse()to accept config with proper precedence (CLI args override config file values)Configuration Example
Supported options include:
concurrency,coverage,min-coverage,show-uncovered,exclude-tags,tags,exclude-coverage,collect-coverage-from,optimization,update-goldens,fail-fast,dart-define,dart-define-from-file,platform,report-on,run-skipped,flavor, andtimeout.Precedence
Closes #360