From 352ab9047be19ed1d8367b9113b7bde280c90124 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Wed, 28 Feb 2024 12:25:05 +0100 Subject: makefile, dashboard/app/util_test.go: test split by dev_appserver.py --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 58994a950..acfc48fd0 100644 --- a/Makefile +++ b/Makefile @@ -319,7 +319,7 @@ presubmit_build: descriptions # This does not check build of test files, but running go test takes too long (even for building). $(GO) build ./... $(MAKE) lint - SYZ_SKIP_DASHBOARD=1 $(MAKE) test + SYZ_SKIP_DEV_APPSERVER_TESTS=1 $(MAKE) test presubmit_arch_linux: descriptions env HOSTOS=linux HOSTARCH=amd64 $(MAKE) host @@ -373,7 +373,7 @@ presubmit_dashboard: descriptions presubmit_race: descriptions # -race requires cgo env CGO_ENABLED=1 $(GO) test -race; if test $$? -ne 2; then \ - env CGO_ENABLED=1 SYZ_SKIP_DASHBOARD=1 $(GO) test -race -short -vet=off -bench=.* -benchtime=.2s ./... ;\ + env CGO_ENABLED=1 SYZ_SKIP_DEV_APPSERVER_TESTS=1 $(GO) test -race -short -vet=off -bench=.* -benchtime=.2s ./... ;\ fi presubmit_race_dashboard: descriptions -- cgit mrf-deployment