From a8342d94bb5c982420c864af341f005f0704209c Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Thu, 21 Nov 2024 06:39:58 -0500 Subject: [PATCH 1/2] fix: Fixing PGVector integration tests Signed-off-by: Francisco Javier Arceo --- Makefile | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4f0f8876154..b0ef7376486 100644 --- a/Makefile +++ b/Makefile @@ -242,7 +242,7 @@ test-python-universal-postgres-online: test-python-universal-pgvector-online: PYTHONPATH='.' \ - FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.pgvector_repo_configuration \ + FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.postgres_online_store.pgvector_repo_configuration \ PYTEST_PLUGINS=sdk.python.tests.integration.feature_repos.universal.online_store.postgres \ python -m pytest -n 8 --integration \ -k "not test_universal_cli and \ @@ -256,6 +256,9 @@ test-python-universal-postgres-online: not gcs_registry and \ not s3_registry and \ not test_universal_types and \ + not test_validation and \ + not test_spark_materialization_consistency and \ + not test_historical_features_containing_backfills and \ not test_snowflake" \ sdk/python/tests @@ -340,6 +343,29 @@ test-python-universal-cassandra-no-cloud-providers: not test_snowflake" \ sdk/python/tests +<<<<<<< Updated upstream +======= + test-python-universal-milvus-online: + PYTHONPATH='.' \ + FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.milvus_online_store.milvus_repo_configuration \ + PYTEST_PLUGINS=sdk.python.tests.integration.feature_repos.universal.online_store.milvus\ + python -m pytest -n 8 --integration \ + -k "not test_universal_cli and \ + not test_go_feature_server and \ + not test_feature_logging and \ + not test_reorder_columns and \ + not test_logged_features_validation and \ + not test_lambda_materialization_consistency and \ + not test_offline_write and \ + not test_push_features_to_offline_store and \ + not gcs_registry and \ + not s3_registry and \ + not test_universal_types and \ + not test_spark_materialization_consistency and \ + not test_snowflake" \ + sdk/python/tests + +>>>>>>> Stashed changes test-python-universal-singlestore-online: PYTHONPATH='.' \ FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.singlestore_repo_configuration \ From d7391646c95382e34b7100a3ad8b7925e815dd26 Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Thu, 21 Nov 2024 06:41:10 -0500 Subject: [PATCH 2/2] Fixing merge Signed-off-by: Francisco Javier Arceo --- Makefile | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/Makefile b/Makefile index b0ef7376486..f155a69a72a 100644 --- a/Makefile +++ b/Makefile @@ -343,29 +343,6 @@ test-python-universal-cassandra-no-cloud-providers: not test_snowflake" \ sdk/python/tests -<<<<<<< Updated upstream -======= - test-python-universal-milvus-online: - PYTHONPATH='.' \ - FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.milvus_online_store.milvus_repo_configuration \ - PYTEST_PLUGINS=sdk.python.tests.integration.feature_repos.universal.online_store.milvus\ - python -m pytest -n 8 --integration \ - -k "not test_universal_cli and \ - not test_go_feature_server and \ - not test_feature_logging and \ - not test_reorder_columns and \ - not test_logged_features_validation and \ - not test_lambda_materialization_consistency and \ - not test_offline_write and \ - not test_push_features_to_offline_store and \ - not gcs_registry and \ - not s3_registry and \ - not test_universal_types and \ - not test_spark_materialization_consistency and \ - not test_snowflake" \ - sdk/python/tests - ->>>>>>> Stashed changes test-python-universal-singlestore-online: PYTHONPATH='.' \ FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.singlestore_repo_configuration \ @@ -377,7 +354,7 @@ test-python-universal-singlestore-online: not test_snowflake" \ sdk/python/tests - test-python-universal-qdrant-online: +test-python-universal-qdrant-online: PYTHONPATH='.' \ FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.online_stores.qdrant_online_store.qdrant_repo_configuration \ PYTEST_PLUGINS=sdk.python.tests.integration.feature_repos.universal.online_store.qdrant \