Skip to content

Commit 51ca262

Browse files
committed
fix possible errors
1 parent 6a852e7 commit 51ca262

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/xtask/src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ impl Xtasks {
446446

447447
// clear coverage directory
448448
assert!(coverage_dir != std::path::Path::new("/"));
449-
std::fs::remove_dir_all(coverage_dir)?;
449+
let _ = std::fs::remove_dir_all(coverage_dir);
450450

451451
std::env::set_var("LLVM_PROFILE_FILE", coverage_file);
452452

@@ -566,6 +566,8 @@ impl Xtasks {
566566
// run docs
567567
Self::docs(false, false)?;
568568

569+
info!("All checks passed, running tests");
570+
569571
// run tests
570572
Self::test(all_features)?;
571573

0 commit comments

Comments
 (0)