Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,8 @@ For concise contributor expectations and a welcoming baseline, read
To choose the right bug, feature, integration, or cloud/team template, use the
[issue template chooser](https://github.com/aaronlab/browsertrace/issues/new/choose).
Before opening a PR, use the [pull request template](.github/PULL_REQUEST_TEMPLATE.md)
and include a linked issue and test commands.
and include a linked issue and test commands; check `git diff --stat` and
`git diff --summary` for unexpected deleted or renamed files.
For security-sensitive reports or private trace data, follow
[SECURITY.md](SECURITY.md) before sharing details publicly.

Expand Down
3 changes: 3 additions & 0 deletions tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,9 @@ def test_readme_links_pull_request_template_near_contributing():
in contributing_section
)
assert "linked issue and test commands" in contributing_section
assert "git diff --stat" in contributing_section
assert "git diff --summary" in contributing_section
assert "unexpected deleted or renamed files" in contributing_section
assert 'pip install "browsertrace[ui]"' in readme
assert "hosted sharing" not in readme

Expand Down