-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Retry()
: Support negative retries
value
#2110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2110 +/- ##
==========================================
+ Coverage 92.43% 92.45% +0.01%
==========================================
Files 104 104
Lines 24363 24387 +24
==========================================
+ Hits 22520 22547 +27
+ Misses 1843 1840 -3
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems to me that sync version tests are missing
did you break |
can you rebase? maybe that's the reason why the CI is broken |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
maybe good old @chayim should have another look here since I am quite new into reviewing PRs in this repo
This looks like a red herring. I expect the python 3.11a builds to fail (hence, they don't break CI). But - the change looks innocuous enough. I suspect it triggered something else. Re-running the action. |
@chayim nice catch! :) |
Yes, pretty sure nothing in the change was causing these builder issues. |
Pull Request check-list
$ tox
pass with this change (including linting)?Description of change
The
Retry
class now accepts a negative value forretries
indicating no upper limit on the number of retries; the actionwill be retried until it succeeds.