feat: skip the heavy test matrix on docs-only changes#833
Merged
bosd merged 1 commit intoJul 18, 2026
Conversation
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
The test workflow now runs the full test / typecheck / coverage matrix for any change that touches code, and only drops to the reduced documentation matrix when a PR changes documentation files exclusively. Previously a docs-only allow-list could let some non-docs changes skip the heavy matrix.
Why this matters
A docs-only PR re-running the full multi-OS Python matrix is wasted CI time, but the original narrow allow-list keyed on specific code paths meant a change to an unlisted project file (a lockfile, a new top-level script) would be treated as docs-only and skip the tests. This inverts the logic to detect documentation-only paths explicitly and treat everything else as code, so non-docs changes always get the full matrix. The maintainer endorsed this approach in #521.
Testing
CI-configuration change; verified the path filter classifies docs-only PRs to the reduced matrix and any code/lockfile/script change to the full matrix.
Closes #521