From: Edward Hervey Date: Tue, 10 Jul 2018 11:16:36 +0000 (+0200) Subject: validate: Use 'skipped' keyword in xunit xml X-Git-Tag: 1.19.3~491^2~509 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0f683dde9931d36437f150210bb26e5f3879aab;p=platform%2Fupstream%2Fgstreamer.git validate: Use 'skipped' keyword in xunit xml It was always meant to be 'skipped' to be 100% compatible with xunit xsl. Makes jenkins happy again --- diff --git a/validate/launcher/reporters.py b/validate/launcher/reporters.py index 3a4cfe9..69f2d55 100644 --- a/validate/launcher/reporters.py +++ b/validate/launcher/reporters.py @@ -178,7 +178,7 @@ class XunitReporter(Reporter): xml_file.write('' '' % self.stats) + 'skipped="%(skipped)d">' % self.stats) tmp_xml_file = codecs.open(self.tmp_xml_file.name, 'r', self.encoding, 'replace')