From 489d5c7760e770b43e4a323aa709be787a991826 Mon Sep 17 00:00:00 2001 From: Deluan Date: Sun, 16 Nov 2025 13:41:22 -0500 Subject: [PATCH] test: update make test-race target to use PKG variable for improved flexibility Signed-off-by: Deluan --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df8155f5..2a60b716 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ testall: test-race test-i18n test-js ##@Development Run Go and JS tests .PHONY: testall test-race: ##@Development Run Go tests with race detector - go test -tags netgo -race -shuffle=on ./... + go test -tags netgo -race -shuffle=on $(PKG) .PHONY: test-race test-js: ##@Development Run JS tests