Quarantine RPC benchmarks to prevent DB pollution

Add //go:build bench tag to bench_test.go so benchmarks NEVER run
during normal 'go test'. They've polluted production DB multiple times.
Benchmarks only run with: go test -tags=bench -bench=.

Cleaned up 1013 test pollution issues (Agent X Issue Y, Version tests).
Back to 18 real open issues.

Amp-Thread-ID: https://ampcode.com/threads/T-5ad38d33-28ba-4f47-997a-b0d7e0331c26
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Steve Yegge
2025-10-22 00:37:04 -07:00
parent 2bb6165202
commit d2e965e022
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
//go:build bench
package rpc
import (