summaryrefslogtreecommitdiff
path: root/AGENTS.md
diff options
context:
space:
mode:
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/AGENTS.md b/AGENTS.md
index 8067fdf..c6c66df 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -35,7 +35,10 @@ No piece of code is considered "done" until it has passed the full verification
1. **Formatting**: `go fmt ./...`
2. **Static Analysis**: `go vet ./...`
3. **Linting**: `golangci-lint run`
-4. **Verification**: `go test -timeout 30s ./...`
+4. **Verification**: Run the test suite via the Makefile:
+ - **All tests**: `make test`
+ - **Specific tests**: `make test TEST_ARGS="-run TestName"` (e.g., `make test TEST_ARGS="-run TestDNSLeak"`)
+ - **Custom flags**: `make test TEST_ARGS="-count=10"`
If any of these tools report an error or warning, the code must be corrected before the task is marked as complete.