module KnapsackPro class AllocatorBuilder < BaseAllocatorBuilder def allocator KnapsackPro::Allocator.new( test_files: test_files, ci_node_total: env.ci_node_total, ci_node_index: env.ci_node_index, repository_adapter: repository_adapter, ) end end end