From 65e4a45c9a81f2364005b7009e27914817b12af6 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Sat, 1 Mar 2025 12:57:07 +0100 Subject: [PATCH] made the "good_repo_for_crab" respect the standard of the other columns --- clone_repos.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clone_repos.py b/clone_repos.py index b82faa4..46f4189 100644 --- a/clone_repos.py +++ b/clone_repos.py @@ -193,6 +193,7 @@ def clean_repo(build_file: str, container): container.exec_run(clean_cmd) 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: if 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_failed=None, n_tests_skipped=None, - good_repo_for_crab=False, + good_repo_for_crab=None, error_msg=None, )