Daniel Nephin
Daniel Nephin
Thanks for the feature request! I haven't had a need for this myself. I use `--format testname` with `--watch` so the output is very often more than a single screen....
Thank you for opening this issue! `gotestsum` is used extensively in CI, so it should be possible to make this work. The exit code from `gotestsum` is pretty important, because...
It's not the same. Using `set +e ` allows you to capture the exit code in a variable `$?`, so that you can `exit` with that code later.
`replace` directives are unfortunately not a good solution. This repo is documented as the official Go client library (https://developer.hashicorp.com/vault/api-docs/libraries), which means anyone using vault from Go code needs to set...
Thanks for the reply! Fair point. I'll review where we use packages outside of `sdk` and `api` and see about opening an issue for that!
It looks like we are using the main module for the inMemory test vault: ```go vault.TestCoreUnsealedWithConfig(t, coreConfig) http.TestServer(t, core) ``` We can try the docker option.
https://github.com/gotestyourself/gotestsum/releases/tag/v1.12.3 Let me know if that fixes it. Thanks!
This is awesome! Thank you for working on this! I've used the actiongraph before to debug build times, but had not considered using it to augment `gotestsum`. I really like...
Glad to hear that `gotestsum` is working well for you! I use `--watch` almost daily as well! The only challenge I see with running tests on startup with `--watch` is...
A mode or keybinding to run "all impacted packages" would be awesome! I have wanted that feature as well, but never found the time to build it. I think using...