7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/knapsack_pro/client/api/v1/build_distributions.rb', line 7
def subset(args)
action_class.new(
endpoint_path: '/v1/build_distributions/subset',
http_method: :post,
request_hash: {
:fixed_test_suite_split => KnapsackPro::Config::Env.fixed_test_suite_split,
:commit_hash => args.fetch(:commit_hash),
:branch => args.fetch(:branch),
:node_total => args.fetch(:node_total),
:node_index => args.fetch(:node_index),
:test_files => args.fetch(:test_files)
}
)
end
|