made the "good_repo_for_crab" respect the standard

of the other columns
This commit is contained in:
Karma Riuk
2025-03-01 12:57:07 +01:00
parent 3f388e3c0c
commit 65e4a45c9a

View File

@ -193,6 +193,7 @@ def clean_repo(build_file: str, container):
container.exec_run(clean_cmd) container.exec_run(clean_cmd)
def process_row(repo, client, dest: str, updates: dict, force: bool = False, verbose: bool = False) -> None: def process_row(repo, client, dest: str, updates: dict, force: bool = False, verbose: bool = False) -> None:
updates["good_repo_for_crab"] = False
with tqdm(total=5, leave=False) as pbar: with tqdm(total=5, leave=False) as pbar:
if repo in EXCLUSION_LIST: if repo in EXCLUSION_LIST:
updates["error_msg"] = "Repo in exclusion list" updates["error_msg"] = "Repo in exclusion list"
@ -273,7 +274,7 @@ def save_df_with_updates(df, updates_list, verbose=False):
n_tests_passed=None, n_tests_passed=None,
n_tests_failed=None, n_tests_failed=None,
n_tests_skipped=None, n_tests_skipped=None,
good_repo_for_crab=False, good_repo_for_crab=None,
error_msg=None, error_msg=None,
) )