Skip to content

Commit

Permalink
PB-987: Remove item-search from conformance
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasJoss committed Oct 29, 2024
1 parent 6ad0486 commit 0348d7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ test-conformance:
--conformance core \
--conformance collections \
--conformance features \
--conformance item-search \
--geometry '{"type": "Polygon", "coordinates": [[[0, 0], [90, 0], [90, 90], [0, 90], [0, 0]]]}' \
--collection $(collection)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@ def add_landing_page_version(apps, schema_editor):
LandingPage = apps.get_model("stac_api", "LandingPage")
lp = LandingPage.objects.get(version='v1')
lp.conformsTo.insert(2, 'https://api.stacspec.org/v1.0.0/ogcapi-features')
lp.conformsTo.insert(2, 'https://api.stacspec.org/v1.0.0/item-search')
lp.save()


class Migration(migrations.Migration):
dependencies = [
("stac_api", "0050_collectionassetupload_and_more"),
("stac_api", "0052_asset_add_del_asset_item_file_size_trigger_and_more"),
]

operations = [migrations.RunPython(add_landing_page_version)]

0 comments on commit 0348d7d

Please sign in to comment.