From c22cac392b1c6892626445753a14b2af46189bf6 Mon Sep 17 00:00:00 2001 From: Lukas Joss Date: Tue, 29 Oct 2024 14:06:07 +0100 Subject: [PATCH] PB-987: Remove item-search from conformance --- Makefile | 1 - ...formance_endpoint.py => 0053_update_conformance_endpoint.py} | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) rename app/stac_api/migrations/{0051_update_conformance_endpoint.py => 0053_update_conformance_endpoint.py} (86%) diff --git a/Makefile b/Makefile index 4d4a7359..cc20b2ef 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/app/stac_api/migrations/0051_update_conformance_endpoint.py b/app/stac_api/migrations/0053_update_conformance_endpoint.py similarity index 86% rename from app/stac_api/migrations/0051_update_conformance_endpoint.py rename to app/stac_api/migrations/0053_update_conformance_endpoint.py index c9da6018..4955de1b 100644 --- a/app/stac_api/migrations/0051_update_conformance_endpoint.py +++ b/app/stac_api/migrations/0053_update_conformance_endpoint.py @@ -13,7 +13,7 @@ def add_landing_page_version(apps, schema_editor): 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)]