Merge pull request #407 from blyxxyz/test-unset-RUST_BACKTRACE

Set RUST_BACKTRACE=0 in feature tests
This commit is contained in:
Mohamed Daahir 2025-02-26 21:53:32 +00:00 committed by GitHub
commit 9f98ad634a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,6 +92,7 @@ fn get_base_command() -> Command {
cmd.env("XH_CONFIG_DIR", "");
#[cfg(target_os = "windows")]
cmd.env("XH_TEST_MODE_WIN_HOME_DIR", "");
cmd.env("RUST_BACKTRACE", "0");
cmd
}