godog/Makefile
gedi 970eddc16a refactor suite runner to support concurrent model
* ef86715 add a concurrency flag
* 8674a58 run suite concurrently, closes #3
2015-07-03 15:54:26 +03:00

15 строки
272 Б
Makefile

.PHONY: test deps
test:
@echo "running all tests"
@go fmt ./...
@golint ./...
go vet ./...
go test
go run cmd/godog/main.go -f progress -c 4
deps:
@echo "updating all dependencies"
go get -u github.com/cucumber/gherkin-go
go get -u github.com/shiena/ansicolor