Reputation: 894
I have a long-running test which i want to monitor while it goes, but bazel caches all output and dumps it only in the end. Is there any way to change this?
Upvotes: 2
Views: 3350
Reputation: 4281
You can stream the test's output to stdout:
bazel test --test_output=streamed //foo:bar
The drawback is, Bazel runs all tests serially in this case.
Upvotes: 5