Skip to content

Commit

Permalink
Silence broad-except warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dkubek committed Feb 29, 2024
1 parent af0d1df commit e1f55ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/test_exit_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_exit_status_stopactorexecution(monkeypatch, repository, error, code):
monkeypatch.setenv('LEAPP_HOSTNAME', _HOSTNAME)
try:
workflow.run(skip_dialogs=True, context=_CONTEXT_NAME, until_actor='ExitStatusActor')
except BaseException:
except BaseException: # pylint: disable=broad-except
pass

ans = get_audit_entry('actor-exit-status', _CONTEXT_NAME).pop()
Expand Down

0 comments on commit e1f55ec

Please sign in to comment.