class ParallelTests::CLI
def simulate_output_for_ci(simulate)
def simulate_output_for_ci(simulate) if simulate progress_indicator = Thread.new do interval = Float(ENV['PARALLEL_TEST_HEARTBEAT_INTERVAL'] || 60) loop do sleep interval print '.' end end test_results = yield progress_indicator.exit test_results else yield end end