Skip to content

Commit 508849e

Browse files
authored
Fix test discovery for simpler command modules. (#97)
1 parent 0de109f commit 508849e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azdev/utilities/path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def get_path_table(include_only=None):
138138
# unified azure-cli package (2.0.68 and later)
139139
new_paths = os.path.normcase(
140140
os.path.join(
141-
cli_repo_path, 'src', 'azure-cli', 'azure', 'cli', 'command_modules', '*', 'commands.py'
141+
cli_repo_path, 'src', 'azure-cli', 'azure', 'cli', 'command_modules', '*', '__init__.py'
142142
)
143143
)
144144
modules_paths = glob(old_paths) + glob(new_paths)

0 commit comments

Comments
 (0)