From 7bafdc43171a59cfab0177d9fb483212c64f019f Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sun, 5 Oct 2025 15:04:30 -0400 Subject: [PATCH] AGENTS.md: expand Revise example --- AGENTS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 9ad86677d1004..d81defa16f136 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -40,6 +40,11 @@ and need to run code with these changes included, you can use `Revise`. To do so, run `using Revise; Revise.track(Base)` (or Revise.track with the stdlib you modified). The test system supports doing this automatically (see below). +For instance testing Base changes without rebuilding, using failfast, you can run: +``` +JULIA_TEST_FAILFAST=1 ./julia -e 'using Revise; Revise.track(Base); include("test.jl")' +``` + ## Specific instructions for particular changes ### Doctests