We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently this is hard-coded, and not exposed as an option:
iterable-api/src/iterable/client.py
Line 38 in a720ca1
This means that it is not straightforward to override it for the purposes of mocking, etc.
The text was updated successfully, but these errors were encountered:
@m-roberts I have a PR incoming for this one, if you're in a pinch feel free to subclass the client:
from iterable import Iterable class MockIterable(Iterable): base_uri = "https://your.favorite.webservice"
Thanks!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently this is hard-coded, and not exposed as an option:
iterable-api/src/iterable/client.py
Line 38 in a720ca1
This means that it is not straightforward to override it for the purposes of mocking, etc.
The text was updated successfully, but these errors were encountered: