Skip to content

Commit

Permalink
Remove first_is_1 check
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydorsey committed Apr 1, 2024
1 parent 5ed8475 commit dbbf2e3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/parallel_tests/cli.rb
Expand Up @@ -82,8 +82,7 @@ def run_tests_in_parallel(num_processes, options)

report_number_of_tests(groups) unless options[:quiet]
test_results = execute_in_parallel(groups, groups.size, options) do |group, index|
test_env_number = options[:first_is_1] ? index + 1 : index
run_tests(group, test_env_number, num_processes, options)
run_tests(group, index, num_processes, options)
end
report_results(test_results, options) unless options[:quiet]
end
Expand Down

0 comments on commit dbbf2e3

Please sign in to comment.