Skip to content

Commit

Permalink
load-all
Browse files Browse the repository at this point in the history
load-all
  • Loading branch information
williexu committed Jul 11, 2018
1 parent a98e00c commit 9a1262a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/ci/test_extensions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for ext in $output; do
exit_code=1
echo "Failed to load:" $ext
fi
azdev verify load_all
azdev verify load-all
if [ $? != 0 ]
then
exit_code=1
Expand Down
4 changes: 2 additions & 2 deletions tools/automation/verify/verify_load_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
EXTENSION_FAILURE_EXCLUSIONS = []

def init(root):
parser = root.add_parser('load_all', help='Load the full command table, command arguments and help.')
parser = root.add_parser('load-all', help='Load the full command table, command arguments and help.')
parser.set_defaults(func=verify_load_all)


Expand All @@ -19,7 +19,7 @@ def verify_load_all(_):
from azure.cli.core.file_util import get_all_help, create_invoker_and_load_cmds_and_args

print('Loading all commands, arguments, and help...')
# setup CLI to enable command loader
# setup CLI to enable command loader and register event
az_cli = get_default_cli()
az_cli.register_event(EVENT_FAILED_EXTENSION_LOAD, extension_failed_load_handler)

Expand Down

0 comments on commit 9a1262a

Please sign in to comment.