Skip to content

Commit

Permalink
Merge pull request #2984 from regro/beckermr-patch-4
Browse files Browse the repository at this point in the history
fix: do not set bad for rerender errors
  • Loading branch information
beckermr committed Sep 3, 2024
2 parents 5a0a1bb + 3a665e4 commit 9c085eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conda_forge_tick/auto_tick.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,9 @@ def _run_migrator_on_feedstock_branch(
logger.exception("NON GITHUB ERROR")

# we don't set bad for rerendering errors
if "conda smithy rerender -c auto --no-check-uptodate" not in str(e):
if "conda smithy rerender -c auto --no-check-uptodate" not in str(
e
) and "Failed to rerender" not in str(e):
with attrs["pr_info"] as pri:
pri["bad"] = {
"exception": str(e),
Expand Down

0 comments on commit 9c085eb

Please sign in to comment.