Skip to content

Commit

Permalink
Make discovery regex more specific. (Azure#6237)
Browse files Browse the repository at this point in the history
No idea why the CI keeps timing out. One version succeeded so I am confident this is an issue with the CI and not this change.
  • Loading branch information
tjprescott authored Apr 27, 2018
1 parent aaded6f commit 554a248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/automation/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


def extract_module_name(path):
mod_name_regex = re.compile(r'azure-cli-([^/\\]*)')
mod_name_regex = re.compile(r'azure[/\\]cli[/\\]([^/\\]+)')
ext_name_regex = re.compile(r'.*(azext_[^/\\]+).*')

try:
Expand Down

0 comments on commit 554a248

Please sign in to comment.