proxy: skip very slow tests in -short test mode (#446)

* proxy: skip very slow tests in -short test mode
* CLAUDE.md: update testing instructions
This commit is contained in:
Benson Wong
2025-12-31 14:08:56 -08:00
committed by GitHub
parent addb98646f
commit 3dc36032fb
4 changed files with 16 additions and 2 deletions
+4
View File
@@ -395,6 +395,10 @@ func TestProcess_StopImmediately(t *testing.T) {
// Test that SIGKILL is sent when gracefulStopTimeout is reached and properly terminates
// the upstream command
func TestProcess_ForceStopWithKill(t *testing.T) {
if testing.Short() {
t.Skip("skipping slow test")
}
if runtime.GOOS == "windows" {
t.Skip("skipping SIGTERM test on Windows ")
}