Home
last modified time | relevance | path

Searched full:xml (Results 1 – 10 of 10) sorted by relevance

/honee/tests/junit-xml/
H A DREADME.rst1 python-junit-xml
3 .. image:: https://travis-ci.org/kyrus/python-junit-xml.png?branch=master
8 A Python module for creating JUnit XML test result documents that can be
12 generate the XML test reports.
14 *As there is no definitive Jenkins JUnit XSD that I could find, the XML
16 searches and the Jenkins JUnit XML reader source code. File a bug if
27 pip install junit-xml
29 easy_install junit-xml
35 git clone https://github.com/kyrus/python-junit-xml.git
54 .. code-block:: xml
[all …]
H A D.gitignore28 nosetests.xml
29 coverage.xml
/honee/tests/junit-xml/junit_xml/
H A D__init__.py7 import xml.etree.ElementTree as ET
8 import xml.dom.minidom
20 Based on the understanding of what Jenkins can parse for JUnit XML files.
22 <?xml version="1.0" encoding="utf-8"?>
119 Builds the XML document for the JUnit test suite.
122 @return: XML document with unicode string elements
252 Returns the string representation of the JUnit XML document.
266 Writes the JUnit XML document to a file.
277 Returns the string representation of the JUnit XML document.
307 xml_string = xml.dom.minidom.parseString(xml_string)
[all …]
/honee/
H A D.gitignore39 xml/*
H A D.gitlab-ci.yml323 # gcovr --xml-pretty --exclude-lines-by-pattern '^\s*SETERR.*' --exclude-unreachable-branch…
408 …- gcovr --json-add-tracefile "coverage-*.json" --xml-pretty -o coverage.xml --print-summary --html…
412 - coverage.xml
418 path: coverage.xml
H A Dconf.py105 'tests/junit-xml/*',
273 breathe_projects = {'HONEE': 'xml'}
H A DDoxyfile351 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
810 # optionally specify a file name after the option, if omitted DoxygenLayout.xml
815 # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
1041 EXCLUDE = tests/junit-xml
1564 # deployment of the documentation. The generated sitemap is called sitemap.xml
1639 # Eclipse, the contents of the directory containing the HTML and XML files needs
1649 # the directory name containing the HTML and XML files should also have this
1862 # script for searching. Instead the search results are written to an XML file
1893 # The default file is: searchdata.xml.
1896 SEARCHDATA_FILE = searchdata.xml
[all …]
H A DMakefile285 format.py := $(filter-out tests/junit-xml/junit_xml/__init__.py, $(shell git ls-files '*.py'))
/honee/tests/
H A Dsmartsim_regression_framework.py19 sys.path.insert(0, (Path(__file__).parents[3] / "tests/junit-xml").as_posix())
H A Djunit_common.py19 sys.path.insert(0, str(Path(__file__).parent / "junit-xml"))
821 """Write a JUnit XML file containing the results of a `TestSuite`