-
-
Notifications
You must be signed in to change notification settings - Fork 668
New issue
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
unclear how to consistently get all of the log output from tests #4158
Comments
(Updated the summary for clarity and with gazelle 0.39.1 testing) |
What's the content of the test log file under |
For
However, the |
Oh, interesting, if you use a
You can get the |
What version of rules_go are you using?
0.50.1
What version of gazelle are you using?
0.39.1
What version of Bazel are you using?
7.3.1
Does this issue reproduce with the latest releases of all the above?
Yes.
What operating system and processor architecture are you using?
macOS arm
What did you do?
Tried to run all of the tests in a package without caching with verbosity turned up to see all of the
t.Logf
lines in it.I tried both with
-test.v
, andtest.count
and without:What did you expect to see?
All of the tests enumerated and all the log lines run by the tests like the usual
go test -v
command.Output like:
What did you see instead?
The versions with
-test.v
or-test.count
always just print (with--cache_test_results=no --test_output=all
included, of course) will only get you theDropping those and only run
bazel test --cache_test_results=no --test_output=all
will get you only:with the usual
after it
The text was updated successfully, but these errors were encountered: