Skip to content

Commit

Permalink
increase max failures
Browse files Browse the repository at this point in the history
  • Loading branch information
MosheEichler committed Dec 7, 2023
1 parent 4a48c04 commit c1461ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content-repo/gendocs.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def timestamped_print(*args, **kwargs):
NO_HTML = '<!-- NOT_HTML_DOC -->'
YES_HTML = '<!-- HTML_DOC -->'
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', 400)) # 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')
Expand Down

0 comments on commit c1461ab

Please sign in to comment.