ignore slow tests

This commit is contained in:
2022-12-20 20:39:46 +01:00
parent 5406dfa6f8
commit ff2a983332
2 changed files with 4 additions and 0 deletions

View File

@@ -182,7 +182,9 @@ Valve JJ has flow rate=21; tunnel leads to valve II";
assert_eq!(process_part_1(INPUT), 1651); assert_eq!(process_part_1(INPUT), 1651);
} }
// This one is ignored for being slow
#[test] #[test]
#[ignore]
fn day2() { fn day2() {
assert_eq!(process_part_2(INPUT), 1707); assert_eq!(process_part_2(INPUT), 1707);
} }

View File

@@ -210,7 +210,9 @@ Blueprint 2: Each ore robot costs 2 ore. Each clay robot costs 3 ore. Each obsid
assert_eq!(process_part_1(INPUT), 33); assert_eq!(process_part_1(INPUT), 33);
} }
// Slow test ahead
#[test] #[test]
#[ignore]
fn day2() { fn day2() {
assert_eq!(process_part_2(INPUT), 3472); assert_eq!(process_part_2(INPUT), 3472);
} }