You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@ Microsoft Azure CLI Dev Tools (azdev)
3
3
4
4
The ``azdev`` tool is designed to aid new and experienced developers in contributing to Azure CLI command modules and extensions.
5
5
6
+
Notes: `azdev` command line tool is only designed for internal use and running on a local machine. It should never be used to take input from untrusted/outside sources or used behind another application.
Copy file name to clipboardExpand all lines: azdev/params.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ def load_arguments(self, _):
50
50
help="Space-separated list of tests to run. Can specify module or extension names, test filenames, class name or individual method names. "
51
51
"Omit to check all or use 'CLI' or 'EXT' to check only CLI modules or extensions respectively.",
52
52
completer=get_test_completion)
53
-
c.argument('profile', options_list='--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-profile'], help='Run automation against a specific profile. If omit, the tests will run against current profile.')
54
54
c.argument('pytest_args', nargs=argparse.REMAINDER, options_list=['--pytest-args', '-a'], help='Denotes the remaining args will be passed to pytest.')
55
55
c.argument('last_failed', options_list='--lf', action='store_true', help='Re-run the last tests that failed.')
56
56
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