Skip to content

Commit

Permalink
Put backtrace
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed May 2, 2024
1 parent f8e25ec commit ef3215e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/runchecks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ fn std_checks() {
}

group!("Checks: {}", member.name);
cargo_build(Params::from(["-p", &member.name]));
// cargo_build(Params::from(["-p", &member.name]));
cargo_test(Params::from(["-p", &member.name]));
endgroup!();
}
Expand Down
1 change: 1 addition & 0 deletions xtask/src/utils/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub(crate) fn run_cargo_with_path<P: AsRef<Path>>(
let mut cargo = Command::new("cargo");
cargo
.env("CARGO_INCREMENTAL", "0")
.env("RUST_BACKTRACE", "full")
.envs(&envs)
.arg(command)
.args(&params.params)
Expand Down

0 comments on commit ef3215e

Please sign in to comment.