Skip to content

Commit

Permalink
Update tests to reflect coveralls-python no longer retrying on 422 re…
Browse files Browse the repository at this point in the history
…sponses
  • Loading branch information
djhoese committed May 9, 2024
1 parent 82b34dc commit ea8fd65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def test_status_code_422(self):
), patch_log() as m_log:
entrypoint.run_coveralls(repo_token="TOKEN")
# coveralls package will retry once per service we call it with
assert m_post.call_count == 4
assert m_post.call_count == 2
assert m_log.error.call_args_list == [
mock.call("Failed to submit coverage", exc_info=None)
]
Expand Down

0 comments on commit ea8fd65

Please sign in to comment.