Masterminds / glide

Package Management for Golang
https://glide.sh
Other
8.15k stars 541 forks source link

`go test -v ./... -ginkgo.v=true`, `-ginkgo.v` is ignored #948

Closed ryan-ju closed 6 years ago

ryan-ju commented 6 years ago

Reproduce

  1. Create a go project
  2. Write some test in a package. The test calls fmt.Println().
  3. Run test with
    go test -v ./... -ginkgo.v
  4. No stdout output until the test has finished

Expected

fmt.Println() should be streamed to stdout as test runs.

Additional Information

go test -v /path/to/package -ginkgo.v

works fine. Not sure why ./... does not work.

ryan-ju commented 6 years ago

My mistake, ginkgo was working properly.