We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ae507 commit 4b1fe5fCopy full SHA for 4b1fe5f
src/tools/opt-dist/src/main.rs
@@ -1,3 +1,5 @@
1
+#![allow(unused, warnings)]
2
+
3
use anyhow::Context;
4
use camino::{Utf8Path, Utf8PathBuf};
5
use clap::Parser;
@@ -396,7 +398,7 @@ fn execute_pipeline(
396
398
// possible regressions.
397
399
// The tests are not executed for fast try builds, which can be broken and might not pass them.
400
if !is_fast_try_build() && env.run_tests() {
- timer.section("Run tests", |_| run_tests(env))?;
401
+ // timer.section("Run tests", |_| run_tests(env))?;
402
}
403
404
Ok(())
0 commit comments