class ParallelTests::CLI

def simulate_output_for_ci

CI systems often fail when there is no output for a long time, so simulate some output
def simulate_output_for_ci
  Thread.new do
    interval = ENV.fetch('PARALLEL_TEST_HEARTBEAT_INTERVAL', 60).to_f
    loop do
      sleep interval
      print '.'
    end
  end
end