From 4e3cc9691977dbde0dc8aa429c99726d02d5bc82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= <vingarcia00@gmail.com> Date: Sun, 27 Mar 2022 09:49:18 -0300 Subject: [PATCH] Update Makefile to run all tests locally --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 499a99a..6090584 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,10 @@ TIME=1s test: setup $(GOBIN)/richgo test $(path) $(args) + @( cd adapters/kpgx ; $(GOBIN)/richgo test $(path) $(args) ) + @( cd adapters/kmysql ; $(GOBIN)/richgo test $(path) $(args) ) + @( cd adapters/ksqlserver ; $(GOBIN)/richgo test $(path) $(args) ) + @( cd adapters/ksqlite3 ; $(GOBIN)/richgo test $(path) $(args) ) bench: cd benchmarks && go test -bench=. -benchtime=$(TIME)