Lines Matching full:junit
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')
835 test_suite (TestSuite): JUnit `TestSuite` to check