Home
last modified time | relevance | path

Searched +full:- +full:- +full:junitxml (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/scripts/ci/
Dcheck_compliance.py5 # SPDX-License-Identifier: Apache-2.0
27 from junitparser import TestCase, TestSuite, JUnitXml, Skipped, Error, Failure
56 f"{cp.stdout.decode('utf-8')}\n"
58 f"{cp.stderr.decode('utf-8')}\n")
60 return cp.stdout.decode("utf-8").rstrip()
69 return git('rev-list',
70 f'--max-count={-1 if "." in refspec else 1}', refspec).split()
73 filter_arg = (f'--diff-filter={filter}',) if filter else ()
74 paths_arg = ('--', *paths) if paths else ()
75 out = git('diff', '--name-only', *filter_arg, COMMIT_RANGE, *paths_arg)
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dharness.py1 # SPDX-License-Identifier: Apache-2.0
74 def trace(self) -> bool:
78 def status(self) -> TwisterStatus:
82 def status(self, value : TwisterStatus) -> None:
117 def translate_record(self, record: dict) -> dict:
131 def parse_record(self, line) -> int:
232 self.instance.execution_time = time.time() - start_time
401 '--twister-harness',
402 '-s', '-v',
403 f'--build-dir={self.running_dir}',
[all …]