File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -370,12 +370,13 @@ def resolve_partial_suite_tests(test_ids)
370370
371371 # Represents a chunk with resolved test objects
372372 class ResolvedChunk
373- attr_reader :chunk_id , :suite_name , :tests
373+ attr_reader :chunk_id , :suite_name , :tests , :estimated_duration
374374
375375 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
381382 def id
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