We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ebd2a3 commit bafdf12Copy full SHA for bafdf12
1 file changed
src/stac_api_validator/validations.py
@@ -1074,6 +1074,10 @@ def validate_collections(
1074
r_session.headers,
1075
)
1076
1077
+ if not collection:
1078
+ warnings += f"[{Context.COLLECTIONS}] Collection parameter required for running all Collections validation"
1079
+ return
1080
+
1081
collection_url = f"{data_link['href']}/{collection}"
1082
_, body, resp_headers = retrieve(
1083
Method.GET,
0 commit comments