Sha256: 8077835a5448a770741ce0b281f3a6453dcbb9be07dd1ac992d61288af353804
Contents?: true
Size: 1.12 KB
Versions: 5
Compression:
Stored size: 1.12 KB
Contents
module KnapsackPro class Report def self.save test_files = KnapsackPro.tracker.to_a if test_files.empty? KnapsackPro.logger.info("Didn't save time execution report on API server because there are no test files matching criteria on this node. Probably reason might be very narrowed tests list - you run only tests with specified tag and there are fewer test files with the tag than node total number.") return end repository_adapter = KnapsackPro::RepositoryAdapterInitiator.call action = KnapsackPro::Client::API::V1::BuildSubsets.create( commit_hash: repository_adapter.commit_hash, branch: repository_adapter.branch, node_total: KnapsackPro::Config::Env.ci_node_total, node_index: KnapsackPro::Config::Env.ci_node_index, test_files: test_files, ) connection = KnapsackPro::Client::Connection.new(action) response = connection.call if connection.success? raise ArgumentError.new(response) if connection.errors? KnapsackPro.logger.info('Saved time execution report on API server.') end end end end
Version data entries
5 entries across 5 versions & 1 rubygems