Simplify testing minimum direct dependencies#1528
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1528 +/- ##
=======================================
Coverage 94.50% 94.50%
=======================================
Files 2 2
Lines 510 510
Branches 62 62
=======================================
Hits 482 482
Misses 22 22
Partials 6 6 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
tjkuson
force-pushed
the
simplify-pytest-min
branch
2 times, most recently
from
July 23, 2026 08:44
372f6bb to
6a84593
Compare
tjkuson
force-pushed
the
simplify-pytest-min
branch
from
July 24, 2026 07:52
6a84593 to
23c624f
Compare
tjkuson
marked this pull request as ready for review
July 24, 2026 08:44
seifertm
approved these changes
Jul 24, 2026
seifertm
left a comment
Contributor
There was a problem hiding this comment.
Very nice! This also avoids having to maintain the minimum supported pytest version in multiple places.
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.
Instead of defining a pytest-min dependency group to test against the lowest supported dependencies (which needs to be maintained), configure tox to use uv's lowest-direct resolution strategy to achieve the same thing.
Rename the test env to be more accurate (it's not just pytest minimum dependencies it checks). Prefixing with
py310meanstox -e py310-lower-boundswill use Python 3.10 instead of relying on thegh-actionsconfiguration.