Skip to content

Commit

Permalink
pass supress_errors as keyword argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ytausch committed Sep 16, 2024
1 parent 08dc6bb commit ae89444
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 @@ -410,7 +410,9 @@ def run(
and not context.automerge
)

rerender_info = _run_rerender(git_backend.cli, context, suppress_errors)
rerender_info = _run_rerender(

Check warning on line 413 in conda_forge_tick/auto_tick.py

View check run for this annotation

Codecov / codecov/patch

conda_forge_tick/auto_tick.py#L413

Added line #L413 was not covered by tests
git_backend.cli, context, suppress_errors=suppress_errors
)
else:
rerender_info = _RerenderInfo(nontrivial_changes=False)

Check warning on line 417 in conda_forge_tick/auto_tick.py

View check run for this annotation

Codecov / codecov/patch

conda_forge_tick/auto_tick.py#L417

Added line #L417 was not covered by tests

Expand Down

0 comments on commit ae89444

Please sign in to comment.