From ba0113c2eb67d0fe0801aacb1fc636c4ec1d3d7a Mon Sep 17 00:00:00 2001 From: Elizabeth Date: Thu, 25 Oct 2018 15:02:33 -0500 Subject: [PATCH] Remove integration package from unit test suite and add to integration tests (#82) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dba5f90b..de7cfa8f 100644 --- a/Makefile +++ b/Makefile @@ -44,13 +44,13 @@ lint: test: | $(GINKGO) $(LINT) go vet ./... go fmt ./... - $(GINKGO) -r --skipPackage=integration_tests + $(GINKGO) -r --skipPackage=integration_tests,integration .PHONY: integrationtest integrationtest: | $(GINKGO) $(LINT) go vet ./... go fmt ./... - $(GINKGO) -r --flakeAttempts=20 pkg/transformers/integration_tests/ + $(GINKGO) -r --flakeAttempts=20 pkg/transformers/integration_tests/ integration_test/ .PHONY: dep dep: | $(DEP)