diff options
Diffstat (limited to 'AGENTS.md')
| -rw-r--r-- | AGENTS.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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. |
