Disable notmuch test.

This commit is contained in:
Bill Thiede 2023-02-24 21:13:20 -08:00
parent 557d408dfe
commit 0dceaa33c2

View File

@ -5,6 +5,7 @@ import (
) )
func TestUnreadMessageCount(t *testing.T) { func TestUnreadMessageCount(t *testing.T) {
t.Skip("notmuch tests disabled, notmuch CLI isn't present in hermetic env")
nm := NewNotmuch("") nm := NewNotmuch("")
count := nm.UnreadMessageCount() count := nm.UnreadMessageCount()
if count <= 0 { if count <= 0 {
@ -13,6 +14,7 @@ func TestUnreadMessageCount(t *testing.T) {
} }
func TestUnreadThreadCount(t *testing.T) { func TestUnreadThreadCount(t *testing.T) {
t.Skip("notmuch tests disabled, notmuch CLI isn't present in hermetic env")
nm := NewNotmuch("") nm := NewNotmuch("")
count := nm.UnreadThreadCount() count := nm.UnreadThreadCount()
if count <= 0 { if count <= 0 {