From cd3c8d78d8a0a53801b6c0d8b95c29b1c837f16b Mon Sep 17 00:00:00 2001 From: YairGlik Date: Sun, 7 Sep 2025 13:36:59 +0300 Subject: [PATCH] increase MAX_FAILURES to 60 --- content-repo/gendocs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content-repo/gendocs.py b/content-repo/gendocs.py index 2a7afb5dc..2a7338e55 100755 --- a/content-repo/gendocs.py +++ b/content-repo/gendocs.py @@ -73,7 +73,7 @@ def timestamped_print(*args, **kwargs): NO_HTML = '' YES_HTML = '' BRANCH = os.getenv('HEAD', 'master') -MAX_FAILURES = int(os.getenv('MAX_FAILURES', 40)) # if we have more than this amount in a single category we fail the build +MAX_FAILURES = int(os.getenv('MAX_FAILURES', 60)) # if we have more than this amount in a single category we fail the build # env vars for faster development MAX_FILES = int(os.getenv('MAX_FILES', -1)) FILE_REGEX = os.getenv('FILE_REGEX')