Daniel Nephin
Daniel Nephin
Thanks! The code that reports version is still relying on it being passed at build time, which doesn't happen when you `go install`. At some point over the last few...
Thanks for opening this issue! I believe #277 may do what you want. That branch still needs some work, primarily some new tests. This new `gotestsum` feature is a little...
Both should be possible. The original feature in #258 splits a test run by package, so each split is a group of packages. The flag `--partition-tests-in-package=` would be to change...
Thanks for having a look! I think the main thing blocking a merge is some more test coverage. It would be great to understand how you're planning on using this....
Thank you for the interest in this feature! As you noted (and as far as I can tell), the test splitting in playwright is much more basic. It's essentially round...
Hello, thanks for the feature request! There's no way to do that today. Generally the `--rerun-fails` option is to deal with flaky tests, but I've never encountered a situation where...
Hello, thank you for the bug report! Can you try with `--debug`? That will print the exact `go test` command that is run. The re-runs are done one test at...
I had not had much time to look into this problem. What I do notice by looking at https://github.com/gotestyourself/gotestsum/issues/442#issuecomment-2373174041, is there's only one `exec` line. So the `--rerun-fails` isn't really...
I guess the reason it passes on the second attempt is because tests are run in isolation. It means that the races and leaks are caused by multiple tests running...
Thank you for the PR! And sorry for the delay. I have been thinking about this change, and I don't think it's quite right. The problem is that benchmarks don't...