Skip to content

Commit b29b947

Browse files
authored
fix profile options (#473)
1 parent 09c0cb2 commit b29b947

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
0.1.79
6+
++++++
7+
* Fix profile options
8+
59
0.1.78
610
++++++
711
* Mitigate shell injection risk from user input.

azdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# -----------------------------------------------------------------------------
66

7-
__VERSION__ = '0.1.78'
7+
__VERSION__ = '0.1.79'

azdev/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def load_arguments(self, _):
5050
help="Space-separated list of tests to run. Can specify module or extension names, test filenames, class name or individual method names. "
5151
"Omit to check all or use 'CLI' or 'EXT' to check only CLI modules or extensions respectively.",
5252
completer=get_test_completion)
53-
c.argument('profile', options_list='--profile', choices=['latest', '2017-03-09-profile', '2018-03-01-hybrid', '2019-03-01-hybrid', '2020-09-01-profile'], help='Run automation against a specific profile. If omit, the tests will run against current profile.')
53+
c.argument('profile', options_list='--profile', choices=['latest', '2017-03-09-profile', '2018-03-01-hybrid', '2019-03-01-hybrid', '2020-09-01-hybrid'], help='Run automation against a specific profile. If omit, the tests will run against current profile.')
5454
c.argument('pytest_args', nargs=argparse.REMAINDER, options_list=['--pytest-args', '-a'], help='Denotes the remaining args will be passed to pytest.')
5555
c.argument('last_failed', options_list='--lf', action='store_true', help='Re-run the last tests that failed.')
5656
c.argument('no_exit_first', options_list='--no-exitfirst', action='store_true', help='Do not exit on first error or failed test')

0 commit comments

Comments
 (0)