Skip to content
Merged
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Don't spell out **Directed Acyclic Graph** except for historical context.
- **Run regular (fast) static checks:** `prek run --from-ref <target_branch> --stage pre-commit`
- **Run manual (slower) checks:** `prek run --from-ref <target_branch> --stage manual`
- **Build docs:** `breeze build-docs`
- **Determine which tests to run based on changed files:** `breeze selective-checks --commit-ref <commit_with_squashed_changes>`
- **Determine which tests to run based on changed files:** `breeze ci selective-check --commit-ref <commit_with_squashed_changes>`
<!-- END generated-commands, please keep comment here to allow auto update -->

SQLite is the default backend. Use `--backend postgres` or `--backend mysql` for integration tests that need those databases. If Docker networking fails, run `docker network prune`.
Expand Down
2 changes: 1 addition & 1 deletion contributing-docs/08_static_code_checks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ To check other usage types of the pre-commit framework, see `Pre-commit website
- "- **Run regular (fast) static checks:** `prek run --from-ref <target_branch> --stage pre-commit`"
- "- **Run manual (slower) checks:** `prek run --from-ref <target_branch> --stage manual`"
- "- **Build docs:** `breeze build-docs`"
- "- **Determine which tests to run based on changed files:** `breeze selective-checks --commit-ref <commit_with_squashed_changes>`"
- "- **Determine which tests to run based on changed files:** `breeze ci selective-check --commit-ref <commit_with_squashed_changes>`"
.. AGENT-SKILL-END

Disabling particular checks
Expand Down
2 changes: 1 addition & 1 deletion dev/breeze/doc/ci/04_selective_checks.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ all versions), the cause is almost always a single rule that fired. To find it:
2. **Reproduce locally** with Breeze, pointing at the squashed commit of your change:

```bash
breeze selective-checks --commit-ref <commit_sha>
breeze ci selective-check --commit-ref <commit_sha>
```

It prints the same outputs and the same `[warning]` reasons CI uses, so you can iterate without
Expand Down
2 changes: 1 addition & 1 deletion dev/skill-evals/last-eval-hash.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by dev/skill-evals/eval.py — do not edit or resolve conflicts by hand.
# Run `prek run run-skill-eval --hook-stage manual --all-files` to regenerate.
9901af13862556bf571a3db5950f1bd32b1cbb79e8e18d3eb41e4fc3827788ce
cdf346752bd43c958355d98e63453bc4a00dd82727dde4243b1c01a2e2afb5fe
2 changes: 1 addition & 1 deletion scripts/tests/ci/prek/test_generate_agent_skills.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ def test_render_lines_produces_bullet_list():
assert any("uv run --project <PROJECT> pytest" in line for line in lines)
assert any("breeze testing helm-tests" in line for line in lines)
assert any("prek run mypy-<project>" in line for line in lines)
assert any("breeze selective-checks" in line for line in lines)
assert any("breeze ci selective-check --commit-ref" in line for line in lines)