Skip to content

Commit 2d8c91b

Browse files
committed
Merge
1 parent f3ffddc commit 2d8c91b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

azdev/help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
text: azdev setup -r azure-cli-extensions
2626
2727
- name: Install CLI in dev mode, along with the extensions repo. Auto-find the CLI repo and install the `alias` extension in dev mode.
28-
text: azdev setup -r azure-cli-extensions -e alias
28+
text: azdev setup -c -r azure-cli-extensions -e alias
2929
"""
3030

3131

azdev/operations/tests/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,8 @@ def run_tests(tests, xml_path=None, ci_mode=False, discover=False, in_series=Fal
5959

6060
if ci_mode:
6161
# CI Mode runs specific modules
62-
# TODO: linter was included, but now this will be in azdev...
6362
path_table = get_path_table()
64-
tests = path_table['core'].keys() + path_table['mod'].keys()
63+
tests = list(path_table['core'].keys()) + list(path_table['mod'].keys())
6564

6665
def _find_test(index, name):
6766
name_comps = name.split('.')

0 commit comments

Comments
 (0)