fix(make): Reduce profile-ws-queue test count to prevent timeouts
Change -count=5 to -count=2 to avoid resource contention 5 sequential runs with 60s timeout each could exceed reasonable time limits
This commit is contained in:
parent
ec9e845bb6
commit
aed59967b7
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -339,7 +339,7 @@ profile-load-norate:
|
|||
profile-ws-queue:
|
||||
@echo "CPU profiling WebSocket queue integration test..."
|
||||
@mkdir -p tests/bin
|
||||
go test ./tests/integration -run WebSocketQueue -count=5 -cpuprofile tests/bin/cpu_ws.out
|
||||
go test ./tests/integration -run WebSocketQueue -count=2 -cpuprofile tests/bin/cpu_ws.out
|
||||
@echo "${OK} CPU profile written to cpu_ws.out (inspect with: go tool pprof tests/bin/cpu_ws.out)"
|
||||
|
||||
# Chaos engineering tests
|
||||
|
|
|
|||
Loading…
Reference in a new issue