diff --git a/ci/docker-compose.yml b/ci/docker-compose.yml index c959847da..616b6c0ae 100644 --- a/ci/docker-compose.yml +++ b/ci/docker-compose.yml @@ -21,7 +21,7 @@ services: AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true' PERSISTENCE_DATA_PATH: '/var/lib/weaviate' DEFAULT_VECTORIZER_MODULE: 'text2vec-contextionary' - ENABLE_MODULES: text2vec-contextionary,backup-filesystem,img2vec-neural,generative-dummy,generative-anyscale,reranker-dummy,reranker-cohere + ENABLE_MODULES: text2vec-contextionary,backup-filesystem,generative-dummy,generative-anyscale,reranker-dummy,reranker-cohere BACKUP_FILESYSTEM_PATH: "/tmp/backups" CLUSTER_GOSSIP_BIND_PORT: "7100" CLUSTER_DATA_BIND_PORT: "7101" @@ -41,6 +41,4 @@ services: image: semitechnologies/contextionary:en0.16.0-v1.2.0 ports: - 9999:9999 - i2v-neural: - image: semitechnologies/img2vec-pytorch:resnet50 ... diff --git a/integration/test_collection.py b/integration/test_collection.py index eb8e4f25f..658b4d01c 100644 --- a/integration/test_collection.py +++ b/integration/test_collection.py @@ -1276,6 +1276,9 @@ def test_near_text_offset(collection_factory: CollectionFactory) -> None: assert objects[0].properties["value"] == "apple cake" +@pytest.mark.skip( + "img2vec-neural removed from CI. This test should go in the e2e-tests repo instead" +) @pytest.mark.parametrize( "image_maker", [ @@ -1330,6 +1333,9 @@ def test_near_image( assert objects3[0].uuid == uuid2 +@pytest.mark.skip( + "img2vec-neural removed from CI. This test should go in the e2e-tests repo instead" +) @pytest.mark.parametrize( "image_maker", [ diff --git a/integration/test_collection_aggregate.py b/integration/test_collection_aggregate.py index f221bc548..4ee34245d 100644 --- a/integration/test_collection_aggregate.py +++ b/integration/test_collection_aggregate.py @@ -570,6 +570,9 @@ def test_near_text_missing_param(collection_factory: CollectionFactory) -> None: ) +@pytest.mark.skip( + "img2vec-neural removed from CI. This test should go in the e2e-tests repo instead" +) @pytest.mark.parametrize("option", [{"object_limit": 1}, {"certainty": 0.9}, {"distance": 0.1}]) def test_near_image_aggregation(collection_factory: CollectionFactory, option: dict) -> None: collection = collection_factory( @@ -591,6 +594,9 @@ def test_near_image_aggregation(collection_factory: CollectionFactory, option: d assert res.properties["rating"].maximum == 9 +@pytest.mark.skip( + "img2vec-neural removed from CI. This test should go in the e2e-tests repo instead" +) def test_near_image_missing_param(collection_factory: CollectionFactory) -> None: collection = collection_factory( properties=[