Skip to content

Commit 12c027e

Browse files
committed
Point contributors at the scoped test command
A bare `bun test` also scans vendor/, inflating pass/fail counts by hundreds and making the count meaningless to compare across branches.
1 parent 0ed6470 commit 12c027e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

AGENTS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,15 @@ When refactoring replaces an old path, delete the old one. No back-compat shims,
3939
```bash
4040
bun run typecheck
4141
bun run build
42-
bun test
42+
bun run test
4343
```
4444

4545
Run the full suite before declaring any task complete. Do not substitute individual targets. If a failure is pre-existing and unrelated to your change, say so explicitly.
4646

47+
`bun run test` runs `bun test ./src ./tests ./evals`. A bare `bun test` also
48+
scans `vendor/`, adding hundreds of unrelated results and making pass/fail
49+
counts meaningless to compare across branches — always use `bun run test`.
50+
4751
## Commits
4852

4953
Follow the `style` skill's message format: plain-English summary, no `feat:`/`fix:` prefixes, no filename in the summary. Separate refactors from feature additions. Commit with the user's local git identity.

0 commit comments

Comments
 (0)