-
Notifications
You must be signed in to change notification settings - Fork 5
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
Wait till path available #916
Conversation
tests/conftest.py
Outdated
@@ -179,6 +182,36 @@ def _setup_local_spark(out: TerminalReporter, verbosity=0): | |||
def api_version(request): | |||
return request.param | |||
|
|||
# TODO: Deduplicate code with openeo-python-driver |
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.
@soxofaan Is there an easy way to share test helpers? It is not very common to make test code available from other repositories as far as i know
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.
that _Sleeper implementation actually comes from python client I think. There I started putting testing utilities under the openeo.testing
namespace: https://github.com/Open-EO/openeo-python-client/tree/master/openeo/testing
We also have that with python driver with openeo_driver.testing
: https://github.com/Open-EO/openeo-python-driver/blob/master/openeo_driver/testing.py
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.
Open-EO/openeo-geotrellis-extensions#329