From ca6198410f98655d8759ee5f001812e875b3d82f Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Mon, 17 Mar 2025 10:48:38 +0100 Subject: [PATCH] forgot to set the client of the the build_handler --- pull_requests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pull_requests.py b/pull_requests.py index e2ea50b..6606cd8 100644 --- a/pull_requests.py +++ b/pull_requests.py @@ -107,6 +107,7 @@ def process_pull(repo: Repository, pr: PullRequest, dataset: Dataset, repos_dir: entry.metadata.reason_for_failure = "Couldn't get the build handler" entry.metadata.successful = False return + build_handler.set_client(docker_client) steps = [ ("Checking for tests...", build_handler.check_for_tests),