
* 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
15 строки
334 Б
Makefile
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
|