Searched full:junit (Results 1 – 10 of 10) sorted by relevance
| /honee/tests/junit-xml/ |
| H A D | README.rst | 1 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 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 98 4. Verify the new version was uploaded at https://pypi.org/project/junit-xml/#history
|
| /honee/ |
| H A D | .gitlab-ci.yml | 137 …OL)) CEED_BACKENDS="/cpu/self/memcheck" JUNIT_BATCH="cpu-serial-memcheck" junit search=navierstokes 148 - build/*.junit 152 junit: build/*.junit 195 …CPU / NPROC_POOL / 1)) CEED_BACKENDS="/cpu/self" JUNIT_BATCH="cpu-serial" junit search=navierstokes 198 …CPU / NPROC_POOL / 1)) CEED_BACKENDS="/cpu/self" JUNIT_BATCH="cpu-serial" junit search="test-smart… 209 - build/*.junit 213 junit: build/*.junit 255 …NPROC_POOL / 1)) CEED_BACKENDS="/cpu/self" JUNIT_BATCH="cpu-serial-int64" junit search=navierstokes 258 …NPROC_POOL / 1)) CEED_BACKENDS="/cpu/self" JUNIT_BATCH="cpu-serial-int64" junit search="test-smart… 269 - build/*.junit [all …]
|
| H A D | Makefile | 285 format.py := $(filter-out tests/junit-xml/junit_xml/__init__.py, $(shell git ls-files '*.py')) 323 …@$(PYTHON) tests/junit.py --ceed-backends $(CEED_BACKENDS) --mode tap $(if $(SMARTREDIS_DIR),--sma… 329 # make junit search='t ex' # core tests and examples 345 …$(PROVE) $(PROVE_OPTS) --exec '$(PYTHON) tests/junit.py' $(matched:$(OBJDIR)/%=%) :: --ceed-backen… 352 # Test with JUNIT output 353 junit-% : $(OBJDIR)/% 354 …@printf " %10s %s\n" TEST $(<:$(OBJDIR)/%=%); $(PYTHON) tests/junit.py --junit-batch $(JUNIT_BATC… 356 junit : $(matched:$(OBJDIR)/%=junit-%) target
|
| H A D | CONTRIBUTING.md | 8 Check that all tests pass using `make prove` or `make junit`.
|
| H A D | conf.py | 105 'tests/junit-xml/*',
|
| H A D | Doxyfile | 1041 EXCLUDE = tests/junit-xml
|
| /honee/tests/ |
| H A D | junit.py | 11 parser = argparse.ArgumentParser('Test runner with JUnit and TAP output') 24 help='Output mode, junit or tap', 25 default=RunMode.JUNIT) 27 …parser.add_argument('-b', '--junit-batch', type=str, default='', help='Name of JUnit batch for out… 217 if args.mode is RunMode.JUNIT:
|
| H A D | junit_common.py | 19 sys.path.insert(0, str(Path(__file__).parent / "junit-xml")) 74 """Enumeration of run modes, either `RunMode.TAP` or `RunMode.JUNIT`""" 76 JUNIT = 'junit' variable in RunMode 559 # print error or failure information if JUNIT mode 775 mode (RunMode): Output mode, either `RunMode.TAP` or `RunMode.JUNIT` 783 TestSuite: JUnit `TestSuite` containing results of all test cases 821 """Write a JUnit XML file containing the results of a `TestSuite` 824 test_suite (TestSuite): JUnit `TestSuite` to write 825 batch (str): Name of JUnit batch, defaults to empty string 827 output_file = Path('build') / (f'{test_suite.name}{batch}.junit') [all …]
|
| H A D | smartsim_regression_framework.py | 19 sys.path.insert(0, (Path(__file__).parents[3] / "tests/junit-xml").as_posix())
|
| /honee/tests/junit-xml/junit_xml/ |
| H A D | __init__.py | 20 Based on the understanding of what Jenkins can parse for JUnit XML files. 119 Builds the XML document for the JUnit test suite. 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. 318 Writes the JUnit XML document to a file. 365 """A JUnit test case with a result and possibly some stdout or stderr"""
|