ci: limit pytest duration reports to the slowest 20 tests - #2523
Open
Andy-Jost wants to merge 3 commits into
Open
ci: limit pytest duration reports to the slowest 20 tests#2523Andy-Jost wants to merge 3 commits into
Andy-Jost wants to merge 3 commits into
Conversation
--durations=0 prints every test phase and floods CI logs. Report only the slowest 20 instead.
Contributor
Author
|
/ok to test |
juenglin
approved these changes
Aug 6, 2026
mdboom
requested changes
Aug 7, 2026
mdboom
left a comment
Contributor
There was a problem hiding this comment.
Could we put this in the [tool.pytest] section in the pyproject.toml files to reduce the duplication and make it apply by default for developers?
Move the duration limit into pytest addopts so CI and local runs share one default, instead of repeating --durations on every command.
|
Andy-Jost
enabled auto-merge (squash)
August 7, 2026 18:35
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
CI was passing
--durations=0, which prints a duration line for every test phase and makes job logs hard to scan. Switch wheel-test workflows andci/tools/run-teststo--durations=20so only the slowest 20 entries are reported.Changes
.github/workflows/test-wheel-linux.yml.github/workflows/test-wheel-windows.ymlci/tools/run-tests