Sha256: 3673c303b4db86d4136bdf727d0945171aec9d1c05b025eacea4108e1480449f
Contents?: true
Size: 485 Bytes
Versions: 18
Compression:
Stored size: 485 Bytes
Contents
# frozen_string_literal: true require 'nokogiri' module GitlabQuality module TestTooling module TestResults class JUnitTestResults < BaseTestResults def write # Ignore it for now end private def parse Nokogiri::XML.parse(File.read(path)) end def process results.xpath('//testcase').map do |test| TestResult.from_junit(test) end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems