mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
24adaa095a
* Support parallel tests in verbose progress reporting Reports correct duration and status for tests run in parallel threads. * manually load verbose_progress minitest plugin
5 lines
183 B
Ruby
5 lines
183 B
Ruby
require "minitest"
|
|
require_relative "verbose_progress_plugin"
|
|
|
|
Minitest.load_plugins
|
|
Minitest.extensions << 'verbose_progress' unless Minitest.extensions.include?('verbose_progress')
|