diff --git a/scripts/test_urls.py b/scripts/test_urls.py index 41a335f163b33145b6f9a462cf4d035229b1dafc..b62d4906eae506e9ca01959536d9e7178cb57bb0 100755 --- a/scripts/test_urls.py +++ b/scripts/test_urls.py @@ -126,7 +126,7 @@ def url_check(url): print(f"ERROR(2): {url} {resp.status_code if resp else '-'}\n{e_str}") end = time.perf_counter() - print(url, "OK" if status else "FAIL", resp.status_code if resp else "-", 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") return url, status def urls_check(urls): @@ -155,6 +155,6 @@ with concurrent.futures.ThreadPoolExecutor(max_workers=PARALLEL) as executor: print(f"Found {len(broken)} broken URLs in {len(urls)} tested:") for b in broken: - print(" ", b) + print("💔 ", b) sys.exit(1 if broken else 0)