mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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
This commit is contained in:
parent
29ef55c469
commit
e0f683dde9
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class XunitReporter(Reporter):
|
||||||
xml_file.write('<?xml version="1.0" encoding="%(encoding)s"?>'
|
xml_file.write('<?xml version="1.0" encoding="%(encoding)s"?>'
|
||||||
'<testsuite name="gst-validate-launcher" tests="%(total)d" '
|
'<testsuite name="gst-validate-launcher" tests="%(total)d" '
|
||||||
'errors="%(timeout)d" failures="%(failures)d" '
|
'errors="%(timeout)d" failures="%(failures)d" '
|
||||||
'skip="%(skipped)d">' % self.stats)
|
'skipped="%(skipped)d">' % self.stats)
|
||||||
|
|
||||||
tmp_xml_file = codecs.open(self.tmp_xml_file.name, 'r',
|
tmp_xml_file = codecs.open(self.tmp_xml_file.name, 'r',
|
||||||
self.encoding, 'replace')
|
self.encoding, 'replace')
|
||||||
|
|
Loading…
Reference in a new issue