Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: v0.7.7 #430

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# [0.7.6](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.5...v0.7.6) (2022-06-06)
# [0.7.7](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.6...v0.7.7) (2022-06-15)

### Features

- **create:** upgrade templates to very_good_analysis v3.0.1 ([#429](https://github.com/VeryGoodOpenSource/very_good_cli/issues/429)) ([0daf130](https://github.com/VeryGoodOpenSource/very_good_cli/commit/0daf13092a94de0d4a7b5e8f158a244ed36e0f08))
- **test:** support --tags option ([#421](https://github.com/VeryGoodOpenSource/very_good_cli/issues/421)) ([f84d488](https://github.com/VeryGoodOpenSource/very_good_cli/commit/f84d488d32c41a4deb25ce84cc55a30b3bbfdac2))

## [0.7.6](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.5...v0.7.6) (2022-06-06)

### Bug Fixes

Expand Down
10 changes: 5 additions & 5 deletions lib/src/commands/test/test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ class TestCommand extends Command<int> {
help: 'Run tests recursively for all nested packages.',
negatable: false,
)
..addOption(
'tags',
abbr: 't',
help: 'Run only tests associated with the specified tags.',
)
..addFlag(
'optimization',
defaultsTo: true,
Expand All @@ -66,6 +61,11 @@ class TestCommand extends Command<int> {
defaultsTo: '4',
help: 'The number of concurrent test suites run.',
)
..addOption(
'tags',
abbr: 't',
help: 'Run only tests associated with the specified tags.',
)
..addOption(
'exclude-coverage',
help: 'A glob which will be used to exclude files that match from the '
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: very_good_cli
description: A Very Good Command Line Interface for Dart created by Very Good Ventures.
version: 0.7.6
version: 0.7.7
homepage: https://github.com/VeryGoodOpenSource/very_good_cli

environment:
Expand Down
2 changes: 1 addition & 1 deletion test/src/commands/test/test_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ const expectedTestUsage = [
'-h, --help Print this usage information.\n'
''' --coverage Whether to collect coverage information.\n'''
'''-r, --recursive Run tests recursively for all nested packages.\n'''
'''-t, --tags Run only tests associated with the specified tags.\n'''
''' --[no-]optimization Whether to apply optimizations for test performance.\n'''
' (defaults to on)\n'
'''-j, --concurrency The number of concurrent test suites run.\n'''
' (defaults to "4")\n'
'''-t, --tags Run only tests associated with the specified tags.\n'''
''' --exclude-coverage A glob which will be used to exclude files that match from the coverage.\n'''
'''-x, --exclude-tags Run only tests that do not have the specified tags.\n'''
''' --min-coverage Whether to enforce a minimum coverage percentage.\n'''
Expand Down