0

尝试bazel test ...使用远程执行和java_test规则运行。

我的测试有时成功,有时失败。这是另一个故事。

但我想为所有案例获取 test.xml 以检查每个测试的经过时间。test.xmlbazel-testlogs仅在某些分片失败时才存在。

我试过了

bazel 测试 --test_output=all --test_summary=detailed ...

但没有奏效。

即使成功,我如何才能获得所有 test.xml?

4

1 回答 1

1

bazel test --remote_download_toplevel ...为我工作。

来自 bazel repo 的remote_execution_test.sh给了我线索!

于 2021-12-09T09:23:48.743 回答