From ce37c1ee6f75e9ae7c70adebae0dbfae0b626af3 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 15 Dec 2020 10:53:30 +0100 Subject: [PATCH] 2020: day11: ignore some long running tests --- aoc2020/src/day11.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aoc2020/src/day11.rs b/aoc2020/src/day11.rs index 5f5c9dd..b438df0 100644 --- a/aoc2020/src/day11.rs +++ b/aoc2020/src/day11.rs @@ -217,6 +217,7 @@ mod tests { } #[test] + #[ignore] fn part1_real() { assert_eq!(part1(INPUT).unwrap(), 2427); } @@ -227,6 +228,7 @@ mod tests { } #[test] + #[ignore] fn part2_real() { assert_eq!(part2(INPUT).unwrap(), 2199); }