From 9e4b97e2e5685e96e6eee787310285739c123553 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 5 Mar 2023 18:41:59 -0800 Subject: [PATCH] Comment on how to run ignored tests. --- notmuch/tests/allmail.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/notmuch/tests/allmail.rs b/notmuch/tests/allmail.rs index 4abc676..a981ce1 100644 --- a/notmuch/tests/allmail.rs +++ b/notmuch/tests/allmail.rs @@ -5,12 +5,11 @@ use std::{ }; use itertools::Itertools; +use notmuch::{Notmuch, NotmuchError, SearchSummary, ThreadSet}; use rayon::iter::{ParallelBridge, ParallelIterator}; -use notmuch::{Notmuch, NotmuchError, SearchSummary, ThreadSet}; - #[test] -#[ignore] // it is too expensive +#[ignore] // it is too expensive, run with `cargo test -- --ignored` fn parse_one() -> Result<(), Box> { // take_hook() returns the default hook in case when a custom one is not set let orig_hook = std::panic::take_hook();