From f398f0fb44baeeb9bfb289eb771e4ba9ad57a5ff Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 11 Sep 2023 14:58:17 +0100 Subject: [PATCH] bin/ci_run_n_monitor: print in which repo we're looking for the pipeline Part-of: --- bin/ci/gitlab_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ci/gitlab_common.py b/bin/ci/gitlab_common.py index 8497dfb..99ebc0e 100644 --- a/bin/ci/gitlab_common.py +++ b/bin/ci/gitlab_common.py @@ -32,7 +32,7 @@ def read_token(token_arg: Optional[str]) -> str: def wait_for_pipeline(project, sha: str): """await until pipeline appears in Gitlab""" - print("⏲ for the pipeline to appear..", end="") + print(f"⏲ for the pipeline to appear in {project.path_with_namespace}..", end="") while True: pipelines = project.pipelines.list(sha=sha) if pipelines: -- 2.7.4