From 03e0936ffa70621742f94844142e071a20001610 Mon Sep 17 00:00:00 2001 From: Emanuele Aina <emanuele.aina@collabora.com> Date: Thu, 8 Jul 2021 21:07:46 +0200 Subject: [PATCH] test_urls: Skip lavaphabbridge.apertis.org since it's slow There's little value in testing the links to the test results for each release note page and since they are quite slow to render let's skip them. Signed-off-by: Emanuele Aina <emanuele.aina@collabora.com> --- scripts/test_urls.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/test_urls.py b/scripts/test_urls.py index 7484776ea..8975e90c6 100755 --- a/scripts/test_urls.py +++ b/scripts/test_urls.py @@ -11,7 +11,12 @@ import sys import traceback from urllib.parse import urlparse import urllib3 +import fnmatch +EXCLUDE = [ + "*://lavaphabbridge.apertis.org", # + "*://lavaphabbridge.apertis.org/*", # it's slooooooow +] def get_link(url): link = url.group("link") @@ -24,6 +29,10 @@ def get_link(url): url = url._replace(fragment="") link = url.geturl() + for exclude in EXCLUDE: + if fnmatch.fnmatch(link, exclude): + return + if not link in urls: urls.append(link) -- GitLab