Add azure-storage-extensions to PyPy incompatibility map#46739
Open
Add azure-storage-extensions to PyPy incompatibility map#46739
Conversation
Agent-Logs-Url: https://github.com/Azure/azure-sdk-for-python/sessions/4f9da8e0-d289-414e-a726-580d6a5fcd2f Co-authored-by: l0lawrence <100643745+l0lawrence@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
l0lawrence
May 5, 2026 22:13
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Azure SDK Python CI tooling to avoid attempting to run azure-storage-extensions tests on PyPy, where the package is incompatible due to its native extension usage.
Changes:
- Added
azure-storage-extensionstoTEST_PYTHON_DISTRO_INCOMPATIBILITY_MAPwith apypyincompatibility entry.
Comment on lines
71
to
82
| TEST_PYTHON_DISTRO_INCOMPATIBILITY_MAP = { | ||
| "azure-storage-blob": "pypy", | ||
| "azure-storage-queue": "pypy", | ||
| "azure-storage-file-datalake": "pypy", | ||
| "azure-storage-file-share": "pypy", | ||
| "azure-eventhub": "pypy", | ||
| "azure-servicebus": "pypy", | ||
| "azure-ai-projects": "pypy", | ||
| "azure-ai-agents": "pypy", | ||
| "azure-identity-broker": "pypy", | ||
| "azure-storage-extensions": "pypy", | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
azure-storage-extensionswas missing fromTEST_PYTHON_DISTRO_INCOMPATIBILITY_MAP, meaning CI could attempt to run its tests on PyPy despite the package (which includes a C extension for CRC64) being incompatible with that distribution.Changes
"azure-storage-extensions": "pypy"toTEST_PYTHON_DISTRO_INCOMPATIBILITY_MAPineng/tools/azure-sdk-tools/ci_tools/functions.py, consistent with the otherazure-storage-*packages already excluded from PyPy test runs.