-
Notifications
You must be signed in to change notification settings - Fork 4
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
Creo missing products #584
Conversation
1111c6d
to
b9183d5
Compare
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.
some minor notes
@@ -75,6 +75,13 @@ def set_all(properties: dict): | |||
set_all(orig_properties) | |||
|
|||
|
|||
@pytest.fixture | |||
def catalog(vault): |
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.
why is this fixture added? It doesn't seem to be used
from openeogeotrellis.testing import random_name, KazooClientMock, config_overrides | ||
from openeogeotrellis.utils import ( | ||
UtcNowClock, | ||
drop_empty_from_aggregate_polygon_result, | ||
get_jvm, | ||
is_package_available, | ||
) | ||
from openeogeotrellis.vault import OAuthCredentials | ||
from .data import get_test_data_file | ||
from tests.data import get_test_data_file |
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.
I'm not sure this is an improvement over the original from .data import get_test_data_file
(which is also not ideal by the way). This import makes it look like there is some top-level tests
package in the venv while the relative import makes it more clear it is just from a sibling file.
Is there a particular reason you changed this?
No description provided.