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", ]