We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b582b02 commit d81d441Copy full SHA for d81d441
1 file changed
test/determinism/determinism_tester.rs
@@ -431,13 +431,12 @@ fn bazel_test_and_hash(
431
.current_dir(workspace)
432
.arg("--output_user_root")
433
.arg(output_user_root)
434
- .arg("test")
+ .arg("build")
435
.arg("//...")
436
.arg("--config=clippy")
437
.arg("--config=rustfmt")
438
- .arg("--test_output=errors")
439
.status()
440
- .context("Failed to spawn bazel test command")?;
+ .context("Failed to spawn bazel build command")?;
441
if !status.success() {
442
anyhow::bail!("Bazel test command failed.")
443
}
0 commit comments