From 0dceaa33c285bd8b7bb40e0d36b1785b26d46822 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Fri, 24 Feb 2023 21:13:20 -0800 Subject: [PATCH] Disable notmuch test. --- notmuch/notmuch_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/notmuch/notmuch_test.go b/notmuch/notmuch_test.go index 2778322..3bb8174 100644 --- a/notmuch/notmuch_test.go +++ b/notmuch/notmuch_test.go @@ -5,6 +5,7 @@ import ( ) func TestUnreadMessageCount(t *testing.T) { + t.Skip("notmuch tests disabled, notmuch CLI isn't present in hermetic env") nm := NewNotmuch("") count := nm.UnreadMessageCount() if count <= 0 { @@ -13,6 +14,7 @@ func TestUnreadMessageCount(t *testing.T) { } func TestUnreadThreadCount(t *testing.T) { + t.Skip("notmuch tests disabled, notmuch CLI isn't present in hermetic env") nm := NewNotmuch("") count := nm.UnreadThreadCount() if count <= 0 {