From 45e3d41e9a85a463384021ad1004e9a61c6f2517 Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Mon, 23 Dec 2024 15:11:30 -0500 Subject: [PATCH] chore: Removing sqlite-vec test constraint Signed-off-by: Francisco Javier Arceo --- sdk/python/tests/unit/online_store/test_online_retrieval.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sdk/python/tests/unit/online_store/test_online_retrieval.py b/sdk/python/tests/unit/online_store/test_online_retrieval.py index 83184643f3..1012e66736 100644 --- a/sdk/python/tests/unit/online_store/test_online_retrieval.py +++ b/sdk/python/tests/unit/online_store/test_online_retrieval.py @@ -521,10 +521,6 @@ def test_sqlite_get_online_documents() -> None: assert len(result["distance"]) == 3 -@pytest.mark.skipif( - sys.version_info[0:2] != (3, 10) or platform.system() != "Darwin", - reason="Only works on Python 3.10 and MacOS", -) def test_sqlite_vec_import() -> None: db = sqlite3.connect(":memory:") db.enable_load_extension(True)