notmuch: disable tests, they don't work in hermetic env.

This commit is contained in:
Bill Thiede 2022-11-13 20:49:24 -08:00
parent 3a7d950968
commit 08728f6501

View File

@ -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()?;