We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sggo.TestCommand prevents test results from being cached by go tooling. According to go docs the only flags that may be set for caching to apply is
sggo.TestCommand
-benchtime, -cpu, -list, -parallel, -run, -short, -timeout, -failfast, and -v
See docs
After some local testing it seems that -race does not impact caching either.
-race
sggo.TestCommand currently sets the following flags as well (which prevents cache):
-shuffle on
-coverprofile
-covermode
It would be great if the default testing with go is cached, to improve feedback velocity when building locally. Perhaps two different targets:
sggo.TestCoverCommand
The text was updated successfully, but these errors were encountered:
This issue has been open for 365 days with no activity. Marking as stale.
Sorry, something went wrong.
No branches or pull requests
sggo.TestCommand
prevents test results from being cached by go tooling.According to go docs the only flags that may be set for caching to apply is
See docs
After some local testing it seems that
-race
does not impact caching either.sggo.TestCommand
currently sets the following flags as well (which prevents cache):-race
-shuffle on
-coverprofile
-covermode
It would be great if the default testing with go is cached, to improve feedback velocity when building locally.
Perhaps two different targets:
sggo.TestCommand
(cached)sggo.TestCoverCommand
(not-cached)The text was updated successfully, but these errors were encountered: