From 2c184add6916922adfa5991a986931f2392f38ec Mon Sep 17 00:00:00 2001 From: red Date: Tue, 19 Mar 2024 17:08:14 +0100 Subject: [PATCH] Chore: Just don't run slow tests --- .vscode/settings.json | 5 +++++ src/year_2016.rs | 11 ++++------- 2 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1672acc --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "search.exclude": { + "inputs/year_*/day_*_input": true + } +} diff --git a/src/year_2016.rs b/src/year_2016.rs index b14c5f0..c70f18f 100644 --- a/src/year_2016.rs +++ b/src/year_2016.rs @@ -41,7 +41,6 @@ pub fn solve(day: u8, part: u8, input: impl Into) -> Option { #[cfg(test)] mod tests { use super::*; - use std::env; #[test] fn day_01() { @@ -72,12 +71,11 @@ mod tests { } #[test] + #[ignore = "Too slow for CI"] fn day_05() { let input = include_str!("../inputs/year_2016/day_05_input"); assert_eq!(day_05::day_05_v1(input), "4543c154"); - if env::var("CI").is_err() { - assert_eq!(day_05::day_05_v2(input), "1050cbbd"); - } + assert_eq!(day_05::day_05_v2(input), "1050cbbd"); } #[test] @@ -122,12 +120,11 @@ mod tests { } #[test] + #[ignore = "Too slow for CI"] fn day_11() { let input = include_str!("../inputs/year_2016/day_11_input"); assert_eq!(day_11::day_11_v1(input), 47); - if env::var("CI").is_err() { - assert_eq!(day_11::day_11_v2(input), 71); - } + assert_eq!(day_11::day_11_v2(input), 71); } #[test]