From 6a2576fc5bb2b60df3ad0563d594d6742e27532b Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 5 Feb 2024 10:28:55 +0100 Subject: chore(ci): run rust build/test/check on 3 platforms (#1675) * chore(ci): run rust build/test/check on 3 platforms * need to properly test windows * do not need to strip here, and windows has a suffix anyway --- atuin-common/src/utils.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'atuin-common') diff --git a/atuin-common/src/utils.rs b/atuin-common/src/utils.rs index 889c78116..1e0f5a9ae 100644 --- a/atuin-common/src/utils.rs +++ b/atuin-common/src/utils.rs @@ -147,6 +147,7 @@ mod tests { use std::collections::HashSet; + #[cfg(not(windows))] #[test] fn test_dirs() { // these tests need to be run sequentially to prevent race condition @@ -169,7 +170,9 @@ mod tests { fn test_config_dir() { env::set_var("HOME", "/home/user"); env::remove_var("XDG_CONFIG_HOME"); + assert_eq!(config_dir(), PathBuf::from("/home/user/.config/atuin")); + env::remove_var("HOME"); } -- cgit v1.2.3