You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Don't spell out **Directed Acyclic Graph** except for historical context.
52
52
-**Lint with ruff only:**`prek run ruff --from-ref <target_branch>`
53
53
-**Format with ruff only:**`prek run ruff-format --from-ref <target_branch>`
54
54
-**Run regular (fast) static checks:**`prek run --from-ref <target_branch> --stage pre-commit`
55
-
-**Run manual (slower) checks:**`prek run --from-ref <target_branch> --stage manual`
55
+
-**Run manual (slower) checks:**`prek run --from-ref <target_branch> --stage manual --skip compile-ui-assets-dev --skip view-skill-eval` (the skipped hooks start long-running local servers rather than checks that complete)
56
56
-**Build docs:**`breeze build-docs`
57
57
-**Determine which tests to run based on changed files:**`breeze ci selective-check --commit-ref <commit_with_squashed_changes>`
58
58
<!-- END generated-commands, please keep comment here to allow auto update -->
@@ -294,7 +294,10 @@ code review checklist in [`.github/instructions/code-review.instructions.md`](.g
294
294
described in this file.
295
295
4. Run regular (fast) static checks (`prek run --from-ref <target_branch> --stage pre-commit`)
296
296
and fix any failures. This includes mypy checks for non-provider projects (airflow-core, task-sdk, airflow-ctl, dev, scripts, devel-common).
297
-
5. Run manual (slower) checks (`prek run --from-ref <target_branch> --stage manual`) and fix any failures.
297
+
5. Run manual (slower) checks
298
+
(`prek run --from-ref <target_branch> --stage manual --skip compile-ui-assets-dev --skip view-skill-eval`)
299
+
and fix any failures. The skipped hooks start long-running local servers rather than checks
300
+
that complete.
298
301
6. Run relevant individual tests and confirm they pass.
299
302
7. Find which tests to run for the changes with selective-checks and run those tests in parallel to confirm they pass and check for CI-specific issues.
300
303
8. Check for security issues — no secrets, no injection vulnerabilities, no unsafe patterns.
0 commit comments