您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
479 B

  1. help:
  2. @echo "Available targets:"
  3. @echo "- test: run tests"
  4. @echo "- deps: installs dependencies with glide"
  5. @echo "- watch: watch for changes and re-run tests"
  6. deps:
  7. glide install && mkdir -p vendor/bin && go build -o vendor/bin/ginkgo ./vendor/github.com/onsi/ginkgo/ginkgo
  8. test: deps
  9. vendor/bin/ginkgo -race -randomizeAllSpecs -r -skipPackage vendor -progress .
  10. watch: deps
  11. vendor/bin/ginkgo watch -race -randomizeAllSpecs -r -skipPackage vendor -progress -notify .