Skip to content

Commit 93e10e1

Browse files
authored
chore: v0.7.7 (#430)
1 parent f84d488 commit 93e10e1

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# [0.7.6](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.5...v0.7.6) (2022-06-06)
1+
# [0.7.7](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.6...v0.7.7) (2022-06-15)
2+
3+
### Features
4+
5+
- **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))
6+
- **test:** support --tags option ([#421](https://github.com/VeryGoodOpenSource/very_good_cli/issues/421)) ([f84d488](https://github.com/VeryGoodOpenSource/very_good_cli/commit/f84d488d32c41a4deb25ce84cc55a30b3bbfdac2))
7+
8+
## [0.7.6](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.5...v0.7.6) (2022-06-06)
29

310
### Bug Fixes
411

lib/src/commands/test/test.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ class TestCommand extends Command<int> {
5050
help: 'Run tests recursively for all nested packages.',
5151
negatable: false,
5252
)
53-
..addOption(
54-
'tags',
55-
abbr: 't',
56-
help: 'Run only tests associated with the specified tags.',
57-
)
5853
..addFlag(
5954
'optimization',
6055
defaultsTo: true,
@@ -66,6 +61,11 @@ class TestCommand extends Command<int> {
6661
defaultsTo: '4',
6762
help: 'The number of concurrent test suites run.',
6863
)
64+
..addOption(
65+
'tags',
66+
abbr: 't',
67+
help: 'Run only tests associated with the specified tags.',
68+
)
6969
..addOption(
7070
'exclude-coverage',
7171
help: 'A glob which will be used to exclude files that match from the '

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: very_good_cli
22
description: A Very Good Command Line Interface for Dart created by Very Good Ventures.
3-
version: 0.7.6
3+
version: 0.7.7
44
homepage: https://github.com/VeryGoodOpenSource/very_good_cli
55

66
environment:

test/src/commands/test/test_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ const expectedTestUsage = [
1717
'-h, --help Print this usage information.\n'
1818
''' --coverage Whether to collect coverage information.\n'''
1919
'''-r, --recursive Run tests recursively for all nested packages.\n'''
20-
'''-t, --tags Run only tests associated with the specified tags.\n'''
2120
''' --[no-]optimization Whether to apply optimizations for test performance.\n'''
2221
' (defaults to on)\n'
2322
'''-j, --concurrency The number of concurrent test suites run.\n'''
2423
' (defaults to "4")\n'
24+
'''-t, --tags Run only tests associated with the specified tags.\n'''
2525
''' --exclude-coverage A glob which will be used to exclude files that match from the coverage.\n'''
2626
'''-x, --exclude-tags Run only tests that do not have the specified tags.\n'''
2727
''' --min-coverage Whether to enforce a minimum coverage percentage.\n'''

0 commit comments

Comments
 (0)