-
Notifications
You must be signed in to change notification settings - Fork 119
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
Add request! function #219
Conversation
Hi and thanks for the PR! I'm willing to add this, please just update the tests as pointed out by @dvic and move the new function definition to get rid of this warning:
|
I didn't know about Credo, but I've fixed the error and now Credo and tests are all passing locally. |
Ubuntu 18.04 is no longer supported
It looks like CI was failing because Github deprecated and removed the Ubuntu 18.04 Actions runner image: actions/runner-images#7388. I've updated the runner finch uses to 20.04, which should unblock CI. |
Hello, it looks like CI is passing. Do you have any more feedback or anything else I should do to prepare this PR for merging? |
Hey @sneako, thanks for merging this in! Would you mind cutting a new release too? |
just published v0.16.0 🎉 |
There are some cases where I want to raise an exception on request failure. Instead of writing the
with
block every time or writing a helper function in my own code, it would be convenient to have a bang variation ofrequest
.Let me know what you think. If this is accepted, it would be great if you could also cut a release after merging so I could start using the new function. Thanks!