From cd7e6618707477c554ac37d56cf4565851c81d3c Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Thu, 24 Nov 2016 14:40:56 +0100 Subject: [PATCH] Added dummy tasks for mysql and pgsql tests --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index a57f6610af..7370d53cbe 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,14 @@ lint: test: for PKG in $(PACKAGES); do go test -cover -coverprofile $$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done; +.PHONY: test-mysql +test-mysql: + @echo "Not integrated yet!" + +.PHONY: test-pgsql +test-pgsql: + @echo "Not integrated yet!" + .PHONY: check check: test