File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -376,8 +376,11 @@ def initialize(chunk, tests)
376376 @chunk_id = chunk . id
377377 @suite_name = chunk . suite_name
378378 @tests = tests . freeze
379+ @estimated_duration = chunk . estimated_duration
379380 end
380381
382+ attr_accessor :estimated_duration
383+
381384 def id
382385 chunk_id
383386 end
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ def run_chunk(chunk, reporter)
243243 chunk_failed = false
244244 failed_tests = [ ]
245245
246- puts "Running chunk: #{ chunk . suite_name } (#{ chunk . size } tests)" if ENV [ 'VERBOSE' ]
246+ puts "Running chunk: #{ chunk . suite_name } (#{ chunk . size } tests) :: Estimated Duration: ( #{ chunk . estimated_duration } s) " if ENV [ 'VERBOSE' ]
247247
248248 # Run each test in the chunk sequentially
249249 chunk . tests . each do |test |
You can’t perform that action at this time.
0 commit comments