From cd82ee491d63f5299c4bee2cf65407f71fcea0e0 Mon Sep 17 00:00:00 2001 From: Emanuele Aina <emanuele.aina@collabora.com> Date: Thu, 8 Jul 2021 22:23:48 +0200 Subject: [PATCH] test_urls: Always print the HTTP status code for each URL It can be useful to figure out what goes wrong. Signed-off-by: Emanuele Aina <emanuele.aina@collabora.com> --- scripts/test_urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test_urls.py b/scripts/test_urls.py index 1008f6c38..483a98a58 100755 --- a/scripts/test_urls.py +++ b/scripts/test_urls.py @@ -113,7 +113,7 @@ for url in urls: if not status: broken.append(url) - print(url, "OK" if status else "FAIL", f"{end - start:0.4f}s") + print(url, "OK" if status else "FAIL", resp.status_code if resp else "-", f"{end - start:0.4f}s") print(f"Found {len(broken)} broken URLs in {len(urls)} tested:") for b in broken: -- GitLab