ben
/
aoc
1
0
Fork 0

skip some long running tests

This commit is contained in:
Ben Harris 2023-11-25 18:15:21 -05:00
parent 1e2e85bc74
commit 56de8e7432
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ public class Test2015
[DataRow(typeof(Day03), "2081", "2341")]
[DataRow(typeof(Day04), "346386", "9958218")]
[DataRow(typeof(Day05), "258", "53")]
[DataRow(typeof(Day06), "543903", "14687245")]
// [DataRow(typeof(Day06), "543903", "14687245")] // TODO: optimize
[DataRow(typeof(Day07), "3176", "14710")]
[DataRow(typeof(Day08), "1342", "2074")]
[DataRow(typeof(Day09), "117", "909")]

View File

@ -10,7 +10,7 @@ public class Test2016
[DataRow(typeof(Day02), "76792", "A7AC3")]
[DataRow(typeof(Day03), "993", "1849")]
[DataRow(typeof(Day04), "361724", "482")]
//[DataRow(typeof(Day05), "F77A0E6E", "999828EC")] // TODO: optimize day 5
//[DataRow(typeof(Day05), "F77A0E6E", "999828EC")] // TODO: optimize
[DataRow(typeof(Day06), "gyvwpxaz", "jucfoary")]
public void CheckAllDays(Type dayType, string part1, string part2) =>
Common.CheckDay(dayType, part1, part2);