--
You received this message because you are subscribed to the Google Groups "bazel-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bazel-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bazel-discuss/2ced18dc-f3c8-4f09-8711-c334b93cb3d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
With bazel at HEAD you need to use the '--nolegacy_bazel_java_test' flag to use our recently shipped test runner and get XML reports.
To view this discussion on the web visit https://groups.google.com/d/msgid/bazel-discuss/CAP01z6JgMhqLiK%3Dx8myBWwpAWcSPBDUnx1kp09d_C_joGyxcoA%40mail.gmail.com.
java_test(
name = "lock_coverage",
srcs = glob(["**/*.java"]),
size = "small",
deps = [
"//java/com/shn/base/io/lock:lock",
"@junit//jar",
"@truth//jar",
],
test_class = "com.shn.base.io.lock.FileLockTest",
runtime_deps = [
"@hamcrest-core//jar",
],
/Users/curt/projects/git/github/bazelbuild/bazel/output/bazel test --nolegacy_bazel_java_test //javatest/com/shn/base/io/lock:lock_coverage
bazel query to analyze build dependencies." I am missing how that is relevant to finding test results?