Daniel Nephin
Daniel Nephin
I guess something like this might also work to remove those extra lines? ```sh go test -json -coverprofile=tmp-coverage.out -coverpkg=. "$@" grep -v 'mode: set' tmp-coverage.out >> coverage.out ``` Although maybe...
I am not familiar with the `ginkgo` output, but from what you've shared it looks like ginkgo has its own output format. `gotestsum` is specifically designed for https://pkg.go.dev/cmd/test2json output, and...
Thank you for the bug report! > If any test case in service-2 fails after rerun, whole test execution should stop and service-3 tests should not be executed. (i.e. -failfast...
It sounds like most likely the `--rerun-fails` flag doesn't work for your use case, something like this might: ```bash for run in {0..3}; do if gotestsum --format short-verbose --jsonfile=last-run.log --hide-summary=all...
> Test 6 to Test 30 do not even execute at all. Ahhh, I understand now. That's because of `-failfast`. That's a good point that I did not realize. `-failfast`...
#280 adds that error so that `gotestsum` refuses to run when `-failfast` is used with `--rerun-fails`. Anything else we should address for this issue? Did the suggestion in the comment...
This might not be necessary with the new go workspaces. I guess in most cases creating a worksapce should be fine, but I have at least one use case where...
The 2.0 spec allows for "extensions", where you can create your own fields with a `x-` prefix. It would be cool to support an `x-pyramid-route` extension, which would let you...
I think that would be ok as long as those things are related to the interface or swagger in some way. I like the idea of specifying routes because operation...
Hello Sabrina, This is the wrong place to report errors. Could you open a new issue with more detail about the errors you encountered?