From 10026d0a90e039883e63a733291952d1aa204768 Mon Sep 17 00:00:00 2001 From: Matthew Jaffee Date: Wed, 16 Nov 2022 13:35:56 -0600 Subject: [PATCH] run just the batch tests for the batch tests (cherry picked from commit 12dd3c5996378a30e777d5fd3b54defe5c8c21bc) --- batch/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch/Makefile b/batch/Makefile index 91ae896e7..6599c4cf8 100644 --- a/batch/Makefile +++ b/batch/Makefile @@ -41,4 +41,4 @@ test-run-local: TPKG ?= ../... test-run: vendor $(DOCKER_COMPOSE) build batch-test - $(DOCKER_COMPOSE) run -T batch-test bash -c "set -o pipefail; go test -v -mod=vendor -tags=odbc,dynamic $(TPKG) -covermode=atomic -coverpkg=$(TPKG) -coverprofile=/testdata/$(PROJECT)_base_coverage.out" + $(DOCKER_COMPOSE) run -T batch-test bash -c "set -o pipefail; go test -v -mod=vendor -tags=odbc,dynamic ./... -covermode=atomic -coverpkg=$(TPKG) -coverprofile=/testdata/$(PROJECT)_base_coverage.out"