brew/Library/Homebrew/test/support/quiet_progress_formatter.rb
Mike McQuaid a743e9277f
workflows/tests: faster, more reliable tests.
- Extract update tests into separate tests.
- Make `brew tests --online` run only once in its own job. This job
  could be made non-required to fight flakiness.
- Split up the various macOS runs into several steps now that we have
  more parallel macOS workers available.
- Cleanup some flaky tests.
2023-02-17 15:26:18 +00:00

13 lines
322 B
Ruby

# typed: true
# frozen_string_literal: true
require "rspec/core/formatters/progress_formatter"
class QuietProgressFormatter < RSpec::Core::Formatters::ProgressFormatter
RSpec::Core::Formatters.register self, :seed
def dump_summary(notification); end
def seed(notification); end
def close(notification); end
end