Skip to content

Commit

Permalink
xtask: silence nextest check
Browse files Browse the repository at this point in the history
Signed-off-by: Hank Donnay <[email protected]>
  • Loading branch information
hdonnay committed Jul 23, 2023
1 parent 33e6ac7 commit b404fdc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,12 @@ fn ci(opts: CiOpts) -> Result<()> {
eprintln!("# skipping code coverage");
};
eprintln!("# running CI tests");
let use_nextest = cmd!(sh, "{cargo} nextest help").quiet().run().is_ok();
let use_nextest = cmd!(sh, "{cargo} nextest help")
.quiet()
.ignore_stdout()
.ignore_stderr()
.run()
.is_ok();
let ar = WORKSPACE.join("tests.tar.zst");
let mut test_args = vec![];
let w = WORKSPACE.to_string_lossy().to_string();
Expand Down

0 comments on commit b404fdc

Please sign in to comment.