method

execution_info

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ParallelizeExecutor
execution_info() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/testing/parallelize_executor.rb, line 72
        def execution_info
          if parallelized?
            "Running #{tests_count} tests in parallel using #{parallel_executor.size} #{parallelize_with}"
          elsif many_workers?
            "Running #{tests_count} tests in a single process (parallelization threshold is #{threshold})"
          end
        end
Register or log in to add new notes.