fix(tests): update goleak check condition to use GOLEAK environment variable

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2026-01-18 21:11:06 -05:00
parent 4ec6e7c56e
commit fd620413b8

View file

@ -14,8 +14,8 @@ import (
)
func TestScanner(t *testing.T) {
// Only run goleak checks when not in CI environment
if os.Getenv("CI") == "" {
// Only run goleak checks when the GOLEAK env var is set
if os.Getenv("GOLEAK") != "" {
// Detect any goroutine leaks in the scanner code under test
defer goleak.VerifyNone(t,
goleak.IgnoreTopFunction("github.com/onsi/ginkgo/v2/internal/interrupt_handler.(*InterruptHandler).registerForInterrupts.func2"),