docs: merge duplicate ui install bullets in readme#338
Merged
aaronlab merged 1 commit intoMay 12, 2026
Merged
Conversation
The two adjacent `[ui]`/SDK-only bullets in the Install From PyPI useful-checks list overlapped in meaning, making the list feel redundant. Combining them into one bullet keeps both the UI-vs-SDK distinction and the terminal-command note without repeating the same framing twice.
aaronlab
approved these changes
May 12, 2026
aaronlab
left a comment
Owner
There was a problem hiding this comment.
Thanks, this is focused and keeps the install-path meaning intact. I verified uv run --python 3.11 --extra dev pytest tests/test_metadata.py -q locally and git diff --check is clean.
This was referenced May 12, 2026
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 Install From PyPI useful-checks list had two adjacent bullets covering the
[ui]vs SDK-only distinction, which overlapped in meaning and made the list feel redundant. This collapses them into a single bullet that keeps both the UI-vs-SDK framing and the terminal-command note, matching the maintainer's ask for a focused PR that removes the duplicatepip install "browsertrace[ui]"bullet without changing the surrounding README wording.Changes
README.md: replace the two adjacent[ui]/SDK-only bullets in the Install From PyPI useful-checks list with one merged bullet preserving both meanings (local web UI requires[ui]; SDK-only install is enough for trace capture and still supportsbrowsertrace list,browsertrace show, andbrowsertrace export).tests/test_metadata.py: update the bulleted-tip assertion list intest_readme_groups_install_tips_as_compact_listto expect the single merged bullet instead of the two original lines.Testing
uv run --python 3.11 --extra dev pytest tests/test_metadata.py -q— passes.Notes
The two README bullets are merged into one rather than dropping a meaning, so both the UI requirement and the SDK-only terminal-command note are still discoverable in the same list. No other README content, install commands, or links are touched.
Closes #337