Skip to content

Commit

Permalink
feat(test): Skip slow test from Day 10
Browse files Browse the repository at this point in the history
  • Loading branch information
cdalvaro committed Jan 30, 2024
1 parent b42c9d3 commit 7e2f279
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/puzzles/2023/day10/day10_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ def test_answer_test_data_set5
end

def test_answer_input_set
skip "Takes too long to run" if ENV["SKIP_SLOW_TESTS"]

puzzle = AdventOfCode::Puzzles2023::Day10::Part2.new

assert_equal 407, puzzle.answer
Expand Down

0 comments on commit 7e2f279

Please sign in to comment.