From 4c59aaeae314cab8a2d2e5f7424bee411528615b Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 7 Apr 2026 20:15:24 -0400 Subject: [PATCH] docs(agents): note macos fd limit for nextest --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 524542707..921bbc55b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -14,6 +14,8 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co - `cargo fmt --check --all` — check formatting - `cargo clippy --workspace -- -D warnings` — lint +macOS note: if `cargo nextest run` fails with `Too many open files (os error 24)` / `EMFILE`, raise the shell's soft FD limit before running tests, for example `ulimit -n 4096 && cargo nextest run --workspace`. Some terminals and inherited agent sessions start with `ulimit -n 256`, which is too low for the shared CLI test daemon under parallel nextest load. + ### TypeScript (fabro-web) - `cd apps/fabro-web && bun run dev` — start React dev server - `cd apps/fabro-web && bun test` — run tests