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 6a852e7 commit 51ca262Copy full SHA for 51ca262
crates/xtask/src/main.rs
@@ -446,7 +446,7 @@ impl Xtasks {
446
447
// clear coverage directory
448
assert!(coverage_dir != std::path::Path::new("/"));
449
- std::fs::remove_dir_all(coverage_dir)?;
+ let _ = std::fs::remove_dir_all(coverage_dir);
450
451
std::env::set_var("LLVM_PROFILE_FILE", coverage_file);
452
@@ -566,6 +566,8 @@ impl Xtasks {
566
// run docs
567
Self::docs(false, false)?;
568
569
+ info!("All checks passed, running tests");
570
+
571
// run tests
572
Self::test(all_features)?;
573
0 commit comments