Remove integration package from unit test suite and add to integration tests (#82)

This commit is contained in:
Elizabeth 2018-10-25 15:02:33 -05:00 committed by GitHub
parent 3ec5b4afab
commit ba0113c2eb

View File

@ -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)