Lines Matching +full:in +full:- +full:line
19 name = canonical_name.replace(":", "-")
21 return os.path.join(script_dir, f"{name}-{suffix}.txt")
25 if "Artifact results/failures.csv not found" in unit_test or '' == unit_test:
36 f[-1] = f[-1].strip() + "\n"
54 return any(unit_test_name in line for line in file_content)
58 return all(unit_test in job_ids[job_id] for job_id in job_ids)
64 lines[:] = [line for line in lines if unit_test_name not in line]
69 if "core_getversion" in unit_test_name:
71 elif all(unit_test_name not in line for line in lines):
77 for i, line in enumerate(fails_txt):
78 if unit_test_name in line:
79 _, current_result = get_unit_test_name_and_results(line)
94 for job_name in xfails.keys():
95 for job_id in xfails[job_name].copy().keys():
96 if "not found" in xfails[job_name][job_id]:
108 pipeline_id = path_components[-1]
124 for url in pipelines_urls:
126 for key in new_xfails:
134 diff = [colored(line, "green") if line.startswith("+") else
135 colored(line, "red") if line.startswith("-") else line for line in diff]
143 for job_name in xfails.keys():
153 for job_id in xfails[job_name].keys():
154 for unit_test in xfails[job_name][job_id]:
199 …parser.add_argument("--only-flakes", action="store_true", help="Treat every detected failure as a …