You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pulled the failing check logs with gh. The failure was from the upgraded Ruff formatter reporting files that needed formatting. Ran uv run ruff format in libraries/dagster-obstore, committed the formatting-only fix, and pushed it to this branch.
Pulled the new failing check logs with gh after the formatting fix. The Azure tests failed because azure-storage-blob 12.29.0 defaults to service API version 2026-04-06, which the Azurite version used in CI does not support. Constrained the dev dependency to azure-storage-blob>=12.24.1,<12.29 and regenerated the lockfile. Ran uv run ruff check and uv run ruff format --check locally for libraries/dagster-obstore, then pushed the fix.
Pulled the latest failing logs with gh. Azure Blob 12.28.0 still defaulted to a service API version unsupported by the Azurite image in CI (2026-02-06). Tightened the dev dependency to azure-storage-blob>=12.24.1,<12.25, which preserves the original Azurite-compatible SDK line, regenerated the lockfile, and pushed the fix.
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
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.
Summary
Testing