From d90264ca9f81c49c0190ebe45b057e7988e1d0d9 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 12 Apr 2022 18:33:02 +0200 Subject: [PATCH] dashboard: fix pagination --- irctest/dashboard/github_download.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/irctest/dashboard/github_download.py b/irctest/dashboard/github_download.py index 06ebaee..dd34b70 100644 --- a/irctest/dashboard/github_download.py +++ b/irctest/dashboard/github_download.py @@ -27,14 +27,15 @@ class Artifact: def iter_run_artifacts(repo: str, run_id: int) -> Iterator[Artifact]: request = urllib.request.Request( - f"https://api.github.com/repos/{repo}/actions/runs/{run_id}/artifacts", + f"https://api.github.com/repos/{repo}/actions/runs/{run_id}/artifacts" + "?per_page=100", headers={"Accept": "application/vnd.github.v3+json"}, ) response = urllib.request.urlopen(request) for artifact in json.load(response)["artifacts"]: - if not artifact["name"].startswith(("pytest_results_", "pytest results ")): + if not artifact["name"].startswith(("pytest-results_", "pytest results ")): continue if artifact["expired"]: continue