Declare the test report dependencies in the test extra - #6756
Open
albertvillanova wants to merge 1 commit into
Open
Declare the test report dependencies in the test extra#6756albertvillanova wants to merge 1 commit into
albertvillanova wants to merge 1 commit into
Conversation
|
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
Member
Author
|
The Because the push created a branch, the action had no base commit and scanned the full history, where it re-verified the public hub-ci dummy token that lives in Re-running the job passes. Fix in #6759. |
qgallouedec
force-pushed
the
ci-test-deps-in-extras
branch
from
August 14, 2026 18:41
8ed1099 to
3356bb7
Compare
albertvillanova
force-pushed
the
ci-test-deps-in-extras
branch
from
August 17, 2026 05:29
3356bb7 to
ad5c8e8
Compare
albertvillanova
force-pushed
the
ci-test-deps-in-extras
branch
from
August 17, 2026 09:17
ad5c8e8 to
313d653
Compare
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.
Stacked on top of #6754.
This PR declares
pytest-reportlogandtabulatein thetestextra, instead of installing them from the slow tests workflow.Motivation
Both jobs of the slow tests workflow install these two dependencies with their own
uv pip installcommands, while every other test dependency is declared in thetestextra. As a consequence, they are missing from a local.[dev]install, so runningmake slow_testswith the report log flag locally fails on an unrecognized option, and the workflow has to know which dependencies the report needs.Changes
pytest-reportlogandtabulatein thetestanddevextrasNote
Low Risk
Dependency and CI wiring only; no runtime library or test logic changes.
Overview
Moves
pytest-reportlogandtabulatefrom ad-hoc installs in the slow-tests GitHub workflow into thetestoptional dependency (and mirrors them indev), so they ship with.[dev]like the rest of the test stack.Both slow-test jobs now rely on
uv pip install ".[dev]"only—workflow steps that separately installed those packages before tests and beforescripts/log_reports.pyare removed. Localmake slow_testswith report logging should match CI without extra manual installs.Reviewed by Cursor Bugbot for commit 313d653. Bugbot is set up for automated code reviews on this repo. Configure here.