Skip to content

Commit

Permalink
Run all the tests in CI regardless of failure & print fail summary
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaner committed Nov 20, 2024
1 parent dd42537 commit 579d72c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/main.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
require "minitest"
require "minitest/reporters"
require "minitest/retry"
require "minitest/fail_fast"
require "minitest/fail_fast" unless ENV["CI"]
require "minitest/hooks/test"

Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new(print_failure_summary: true)
Minitest::Retry.use!(exceptions_to_retry: [GhostferryHelper::Ghostferry::TimeoutError])

test_files.each do |f|
Expand Down

0 comments on commit 579d72c

Please sign in to comment.