Skip to content

Commit

Permalink
experiment: set CARGO_TERM_VERBOSE to false explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
suaviloquence committed Aug 23, 2024
1 parent 9b08ee8 commit 1be293c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snapshot_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ fn assert_integration_test(test_name: &str, invocation: &[&str]) {
std::env::remove_var("RUST_BACKTRACE");
// remove the cargo verbosity variable, which gets passed to `cargo doc`
// and may create a nonreproducible environment.
std::env::remove_var("CARGO_TERM_VERBOSE");
std::env::set_var("CARGO_TERM_VERBOSE", "false");

let stdout = StaticWriter::new();
let stderr = StaticWriter::new();
Expand Down

0 comments on commit 1be293c

Please sign in to comment.