From 08728f6501834dad3fca4a4deb2fd05ff61b8a1d Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 13 Nov 2022 20:49:24 -0800 Subject: [PATCH] notmuch: disable tests, they don't work in hermetic env. --- notmuch/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notmuch/src/lib.rs b/notmuch/src/lib.rs index e22489d..5d5aa73 100644 --- a/notmuch/src/lib.rs +++ b/notmuch/src/lib.rs @@ -577,6 +577,7 @@ mod tests { use super::*; #[test] + #[ignore] // skip because notmuch config is relative to $HOME fn new() -> Result<(), NotmuchError> { let nm = Notmuch::with_config("testdata/notmuch.config"); nm.new()?; @@ -590,6 +591,7 @@ mod tests { Ok(()) } #[test] + #[ignore] // skip because notmuch config is relative to $HOME fn search() -> Result<(), NotmuchError> { let nm = Notmuch::with_config("testdata/notmuch.config"); nm.new()?; @@ -598,6 +600,7 @@ mod tests { Ok(()) } #[test] + #[ignore] // skip because notmuch config is relative to $HOME fn show() -> Result<(), NotmuchError> { let nm = Notmuch::with_config("testdata/notmuch.config"); nm.new()?; @@ -607,6 +610,7 @@ mod tests { } #[test] + #[ignore] // skip because notmuch config is relative to $HOME fn count() -> Result<(), NotmuchError> { let nm = Notmuch::with_config("testdata/notmuch.config"); nm.new()?;