Skip to content

Commit

Permalink
add conformance for q= in STAC (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Oct 30, 2023
1 parent 45858da commit 02c8756
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pycsw/stac/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@
'https://api.stacspec.org/v1.0.0/core',
'https://api.stacspec.org/v1.0.0/ogcapi-features',
'https://api.stacspec.org/v1.0.0/item-search',
'https://api.stacspec.org/v1.0.0/item-search#filter'
'https://api.stacspec.org/v1.0.0/item-search#filter',
'https://api.stacspec.org/v1.0.0/item-search#free-text'
]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_landing_page(config):

assert content['stac_version'] == '1.0.0'
assert content['type'] == 'Catalog'
assert len(content['conformsTo']) == 14
assert len(content['conformsTo']) == 15
assert len(content['keywords']) == 3


Expand All @@ -70,7 +70,7 @@ def test_conformance(config):
assert headers['Content-Type'] == 'application/json'
assert status == 200

assert len(content['conformsTo']) == 14
assert len(content['conformsTo']) == 15

conformances = [
'https://api.stacspec.org/v1.0.0/core',
Expand Down

0 comments on commit 02c8756

Please sign in to comment.