blob: 3dd5d11d56c6358580ad6bd76469cc83c067f636 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/env python3
import argparse
from typing import List
from junit_utils import iter_xml_files
def check_for_fail(paths: List[str]):
failed_list = []
error_list = []
for path in paths:
for fn, suite, case in iter_xml_files(path):
is_failure = case.find("failure") is not None
is_error = case.find("error") is not None
test_name = f"{case.get('classname')}/{case.get('name')}"
if is_failure:
failed_list.append((test_name, fn))
elif is_error:
error_list.append((test_name, fn))
if failed_list or error_list:
print(f"::error::You have failed tests")
for t, fn in failed_list:
print(f"failure: {t} ({fn})")
for t, fn in error_list:
print(f"error: {t} ({fn})")
raise SystemExit(-1)
def main():
parser = argparse.ArgumentParser()
parser.add_argument("path", nargs="+", help="jsuite xml reports directories")
args = parser.parse_args()
check_for_fail(args.path)
if __name__ == "__main__":
main()
|