class ParallelTests::RSpec::RuntimeLogger

def example_group_finished(notification)

def example_group_finished(notification)
  @group_nesting -= 1
  if @group_nesting == 0
    path = (RSPEC_2 ? notification.file_path : notification.group.file_path)
    @example_times[path] += ParallelTests.now - @time
  end
  super if defined?(super)
end