Tweaked test-crawl to not visit all 180.000 /html/ pages.

- Legacy-Id: 17763
This commit is contained in:
Henrik Levkowetz 2020-05-08 18:49:33 +00:00
parent 29ccca849a
commit 695b6e0e86

View file

@ -138,6 +138,7 @@ def check_html_valid(url, response, args):
key = re.sub("/dir/[a-z0-9-]+/", "/dir/foo/", key)
key = re.sub("/draft-[a-z0-9-]+/", "/draft-foo/", key)
key = re.sub("/group/[a-z0-9-]+/", "/group/foo/", key)
key = re.sub("/html/[a-z0-9-]+", "/html/foo/", key)
key = re.sub("/ipr/search/.*", "/ipr/search/", key)
key = re.sub("/meeting/[-0-9a-z]+/agenda/[0-9a-z]+/", "/meeting/nn/agenda/foo/", key)
key = re.sub("/release/[0-9dev.]+/", "/release/n.n.n/", key)