From 8dced53bb87bddd392afa163c9d202eab3929804 Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Sun, 19 Apr 2020 08:14:31 -0700 Subject: [PATCH] Run tests with ginkgo --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6a7787f..cd3928b 100644 --- a/Makefile +++ b/Makefile @@ -22,9 +22,9 @@ fmt: $(info ******************** checking formatting ********************) @test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1) -test: install_deps vet +test: deps vet $(info ******************** running tests ********************) - richgo test -v ./... + ginkgo -r -skipPackage vendor --randomizeAllSpecs --randomizeSuites --failOnPending deps: $(info ******************** downloading dependencies ********************)