Update remaining workflow files with consistent pytest version specifications #236
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.
This PR completes the pytest version specification updates started in #233 by updating the remaining GitHub Actions workflow files that still used the old version constraints.
Problem
While PR #233 successfully updated
test-functions.ymlandverify-module.ymlto use modern pytest versions that resolve serialization issues, 4 other workflow files were left with the old version specifications:.github/workflows/run-examples.yml.github/workflows/test-functions-python313.yml.github/workflows/test-pip.yml.github/workflows/measure-coverage.ymlThis inconsistency could lead to different pytest behaviors across workflows and potential serialization failures in parallel test execution.
Solution
Updated all remaining workflow files to use the same pytest version specifications established in #233:
pytest>=7.4.0,<8.0.0→pytest>=8.4.0pytest-xdist>=3.3.0,<4.0.0→pytest-xdist>=3.8.0pytest-rerunfailures>=11.1,<12.0→pytest-rerunfailures>=16.0Also updated the comments to consistently reference "parallel execution" instead of "serialization issues" to match the style from #233.
Impact
Fixes #235.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.