From c96853dfc95776df5d95bf26a660d850f22a35ac Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Fri, 15 Nov 2024 10:34:41 +0300 Subject: [PATCH] Export more vector stuff, print skipped and failed tests --- hazelcast/vector.py | 2 +- run_tests.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hazelcast/vector.py b/hazelcast/vector.py index de46fa7c6f..c3ef693bc8 100644 --- a/hazelcast/vector.py +++ b/hazelcast/vector.py @@ -3,7 +3,7 @@ from typing import Any, Dict, List, Optional, Union -__all__ = "Document", "Vector", "IndexConfig", "SearchResult" +__all__ = "Document", "Vector", "IndexConfig", "SearchResult", "Metric", "Type" class Type(enum.IntEnum): diff --git a/run_tests.py b/run_tests.py index 3f94633392..a6b32db46f 100644 --- a/run_tests.py +++ b/run_tests.py @@ -30,6 +30,7 @@ def wait_until_rc_is_ready(): args = [ "pytest", + "-rsx", "--cov=hazelcast", "--cov-report=xml", ]