godog/Makefile
gedi c6d00dd6d5 refactor to use cocumber gherkin3 parser library
* bdde4c4 fix test suite and migration changes
* a3b6e01 refactor pretty formatter
* 2c0c7ba fix outline scenario handling
* f6b411d add a different language test feature

add a different language test feature
2015-06-25 21:19:02 +03:00

15 строки
334 Б
Makefile

.PHONY: test
# runs all necessary tests
test:
@sh -c 'if [ ! -z "$(go fmt ./...)" ]; then exit 1; fi'
golint ./...
go vet ./...
go test ./...
go run cmd/godog/main.go -f progress
# updates dependencies
deps:
go get -u github.com/cucumber/gherkin-go
go get -u golang.org/x/tools/imports
go get -u github.com/shiena/ansicolor