onsi / ginkgo

A Modern Testing Framework for Go
http://onsi.github.io/ginkgo/
MIT License
8.12k stars 644 forks source link

Don't skip tests that failed to compile #1328

Closed myzhan closed 6 months ago

myzhan commented 6 months ago

I need ginkgo to keep going when some tests are failure, so I use the --keep-going flag. But it aslo skip tests that are failed to compile.

When some tests are failed to compile, I need ginkgo to exit with a non-zero code, so the CI can fail.

myzhan commented 6 months ago

I misunderstood, current behavior is right.