gitlab-org--gitlab-foss/scripts/gather-test-memory-data
Aleksei Lipniagov 4085428ebd Gather memory usage data in tests
Log memory stats after running each spec file and compile the report.
2019-07-12 10:44:17 +00:00

21 lines
510 B
Ruby
Executable file

#!/usr/bin/env ruby
require 'csv'
def join_csv_files(output_path, input_paths)
return if input_paths.empty?
input_csvs = input_paths.map do |input_path|
CSV.read(input_path, headers: true)
end
CSV.open(output_path, "w", headers: input_csvs.first.headers, write_headers: true) do |output_csv|
input_csvs.each do |input_csv|
input_csv.each do |line|
output_csv << line
end
end
end
end
join_csv_files('tmp/memory_test/report.csv', Dir['tmp/memory_test/*.csv'].sort)