File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
activesupport/lib/active_support/testing
railties/test/application Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def show_execution_info
61
61
end
62
62
63
63
def execution_info
64
- if should_parallelize ?
64
+ if parallelized ?
65
65
"Running #{ tests_count } tests in parallel using #{ parallel_executor . size } #{ parallelize_with } "
66
66
else
67
67
"Running #{ tests_count } tests in a single process (parallelization threshold is #{ ActiveSupport . test_parallelization_minimum_number_of_tests } )"
Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ def test_run_in_parallel_with_processes
571
571
assert_no_match "create_table(:users)" , output
572
572
end
573
573
574
- def test_avoid_paralleling_when_number_of_tests_if_below_threshold
574
+ def test_avoid_parallelizing_when_number_of_tests_is_below_threshold
575
575
exercise_parallelization_regardless_of_machine_core_count ( with : :processes , threshold : 100 )
576
576
577
577
file_name = create_parallel_processes_test_file
You can’t perform that action at this time.
0 commit comments