Sha256: 48221f33d62da931a05a1340a302fdaa3f2e77962c7e3a6ed92b80c958cf4327
Contents?: true
Size: 1.58 KB
Versions: 36
Compression:
Stored size: 1.58 KB
Contents
require 'parallel_tests' require 'parallel_tests/rspec/logger_base' class ParallelTests::RSpec::RuntimeLogger < ParallelTests::RSpec::LoggerBase def initialize(*args) super @example_times = Hash.new(0) @group_nesting = 0 unless RSPEC_1 end if RSPEC_3 RSpec::Core::Formatters.register self, :example_group_started, :example_group_finished, :start_dump end if RSPEC_1 def example_started(*args) @time = ParallelTests.now super end def example_passed(example) file = example.location.split(':').first @example_times[file] += ParallelTests.now - @time super end else def example_group_started(example_group) @time = ParallelTests.now if @group_nesting == 0 @group_nesting += 1 super end def example_group_finished(notification) @group_nesting -= 1 if @group_nesting == 0 path = (RSPEC_3 ? notification.group.file_path : notification.file_path) @example_times[path] += ParallelTests.now - @time end super if defined?(super) end end def dump_summary(*args);end def dump_failures(*args);end def dump_failure(*args);end def dump_pending(*args);end def start_dump(*args) return unless ENV['TEST_ENV_NUMBER'] #only record when running in parallel # TODO: Figure out why sometimes time can be less than 0 lock_output do @example_times.each do |file, time| relative_path = file.sub(/^#{Regexp.escape Dir.pwd}\//,'').sub(/^\.\//, "") @output.puts "#{relative_path}:#{time > 0 ? time : 0}" end end @output.flush end end
Version data entries
36 entries across 36 versions & 2 rubygems