Daniel Nephin
Daniel Nephin
Thank you for the bug report! It seems like this may be a problem with the IP addresses returned by https://github.com/hashicorp/go-discover/tree/master/provider/aws Consul uses https://pkg.go.dev/net#SplitHostPort, which says ipv6 addresses must be...
Thank you for the detailed bug report and the minimal reproduction! I ran this test using `go test -race -count=1 -json .` and I noticed that sometimes the data race...
The bug is likely a race that causes https://pkg.go.dev/cmd/test2json to attribute the failure to the wrong package. I would capture the full output to a file using `--jsonfile` and save...
```go errT, ok := errors.As(err, &errorType{}) if !ok { t.Fatal("got error type %T, wanted errorType", err) } ``` Or ```go errT, ok := errors.As(err, &errorType{}) assert.Assert(ok, "got %T", err) ```...
That you for raising this issue! Currently it's not possible to hide the test failure output with `testname`. In #326 we talked about adding a `--format-with-fails` flag. This flag would...
Contributions are welcome! If someone opens a PR for this I can review and merge it.
Thank you for your interest in implementing this feature! I think before we review any implementation it would be good to outline how the problem will be solved. Implementing pagination...
Thank you for suggesting this feature! `rr` looks very useful. The `gotestsum --watch` mode ([docs](https://github.com/gotestyourself/gotestsum#run-tests-when-a-file-is-saved)) has a key shortcut for rerunning the failed package and dropping into delve. That integration...
Thank you for the PR! You're right this new tool is not yet documented in the help text or in the README. I have it on the list of things...
Thank you for the bug report! I wonder if some are using this as a way to re-run everything on any failure. I do something similar occasionally by specifying extra...