Fix Python wheel test skipping and dependencies#876
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #876 +/- ##
========================================
Coverage 60.42% 60.43%
========================================
Files 744 744
Lines 48963 48963
Branches 7771 7771
========================================
+ Hits 29588 29589 +1
Misses 17965 17965
+ Partials 1410 1409 -1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
ColinLeeo
added a commit
that referenced
this pull request
Jul 23, 2026
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.
Summary
This PR fixes two issues in the Python wheel build:
-DskipTestsoption correctly skip Python test setup and execution.Root Cause
${skipTests:-false}uses shell-style default-value syntax, which is not supported by Maven property interpolation. As a result,-DskipTestswas not correctly propagated to the Python test executions.Additionally, Python 3.13 was still selecting pandas 2.2.2. That version does not provide a compatible Windows CPython 3.13 wheel, causing pip to attempt a source build and fail during the wheel workflow.
Changes
${skipTests:-false}with${skipTests}in the Python Maven configuration.<2.3for Python 3.9–3.12.requirements.txtand wheel package metadata consistent.Validation
-DskipTestssets both Python test executions toskip=true.git diff --check.