class Gitlab::QA::Report::ResultsInIssues

def run!

def run!
  puts "Reporting test results in `#{files.join(',')}` as issues in project `#{project}` via the API at `#{Runtime::Env.gitlab_api_base}`."
  test_results_per_file do |test_results|
    puts "Reporting tests in #{test_results.path}"
    test_results.each do |test|
      report_test(test)
    end
    test_results.write
  end
end