test(pypi): add tests verifying Windows RECORD script .bat extension - #4114
Draft
rickeylev wants to merge 7 commits into
Draft
test(pypi): add tests verifying Windows RECORD script .bat extension#4114rickeylev wants to merge 7 commits into
rickeylev wants to merge 7 commits into
Conversation
Convert importlib_metadata_test from unittest to pytest and use the pytest_test rule. Also update assertions to expect .bat extensions for rewritten shebang scripts on Windows and verify all located files directly.
Configure python_versions to test importlib_metadata_test across Python 3.10 through 3.14.
…cord_rewriter_test Update Windows RECORD expected output in wheel_record_rewriter_test so that .sh scripts without Python shebangs do not expect a .bat extension.
Configure target_compatible_with = SUPPORTS_BZLMOD for importlib_metadata_test since pytest_test dependencies require bzlmod.
…dows in RECORD files On Windows, shebang-bin scripts are rewritten to .bat wrappers. Update wheel RECORD rewriters to append .bat for extensionless script entries.
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.
On Windows, scripts installed into virtual environments may have a
.batextension appended. Test coverage is needed to ensure thatRECORD file rewriting and
importlib.metadatafile resolution properlyaccount for Windows script paths across supported Python versions.
Migrate
importlib_metadata_testtopytest_testacross Python 3.10through 3.14, and update metadata and RECORD rewriter test assertions
to verify Windows script path and extension handling.