{Core} Add __init__.py
to azure.cli.core.sdk
#17817
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
azure.cli.core.sdk
(added by #17671) doesn't have__int__.py
, so it will not be included in thewhl
file, causing CI failure:https://dev.azure.com/azure-sdk/public/_build/results?buildId=855815&view=logs&jobId=c846b3e8-69b8-5dbd-1a39-4905d81e6a95&j=1e6fba43-bdcf-51f0-a062-3712c33fbb51&t=a1e787eb-ec67-5c3d-79ec-0c68f4f59d65
This is because
setup.py
usesfind_packages
to find packages to include in thewhl
file:azure-cli/src/azure-cli-core/setup.py
Line 91 in 6728379
Only folders with
__int__.py
are marked as a package.Similar problem happened before: #15711 (comment).