terminal: render file paths as OSC 8 hyperlinks#14722
Open
CNSeniorious000 wants to merge 5 commits into
Open
Conversation
Add a `--hyperlinks` option (yes/no/auto, default auto) that wraps file paths in tracebacks as clickable OSC 8 terminal hyperlinks. Auto enables them only on an interactive terminal (gated on the writer's isatty, not sys.stdout) so captured/pastebin output stays clean. Closes pytest-dev#13580. Co-authored-by: Macaron V1 Venti <contact@mindlab.ltd>
for more information, see https://pre-commit.ci
CNSeniorious000
marked this pull request as draft
July 19, 2026 00:49
CNSeniorious000
marked this pull request as ready for review
July 19, 2026 01:51
CNSeniorious000
force-pushed
the
osc8-hyperlinks
branch
from
July 19, 2026 02:07
3212d43 to
bbe8ccb
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.
Add a
--hyperlinksoption (yes/no/auto, defaultauto) that wraps file paths in tracebacks as clickable OSC 8 terminal hyperlinks.Key decisions:
autogates ontw.isatty(the writer's actual file, notsys.stdout) so a non-tty sink like the pastebin plugin'sStringIOstays clean even with--color=yes, which forceshasmarkup=True.Path.as_uri()so spaces are percent-encoded and Windows paths yieldfile:///C:/...rather than misparsing the drive letter as a host.--hyperlinks=yesis unconditional (like--color=yes); callers that reuse output as plain text (pastebin) cleartw.hyperlinksthemselves.Closes #13580.