From fefc5b2af8173ff37e40edc5d5e2ba2adb574de0 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Fri, 20 Sep 2024 10:12:55 +0400 Subject: [PATCH] run pure Go tests with `make test` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b4bff05..2fb0603 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ endif all: lint test -#? test: Run memdb and pebbledb tests +#? test: Run pure Go tests only test: @echo "--> Running go test" - @go test $(PACKAGES) + @go test $(PACKAGES) -tags goleveldb,boltdb,badgerdb .PHONY: test #? test-goleveldb: Run goleveldb tests