File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ endif
197
197
198
198
flow_test :
199
199
$(SHOW ) poetry install $(POETRY_ARGS )
200
- $(SHOW ) poetry run pytest tests/flow/$(TEST ) --deselect=tests/flow/test_svs.py - v -s
200
+ $(SHOW ) poetry run pytest tests/flow/$(TEST ) -v -s
201
201
202
202
.PHONY : flow_test
203
203
Original file line number Diff line number Diff line change @@ -60,6 +60,11 @@ target_link_libraries(test_fp16 PUBLIC gtest_main VectorSimilarity)
60
60
target_link_libraries (test_int8 PUBLIC gtest_main VectorSimilarity)
61
61
target_link_libraries (test_uint8 PUBLIC gtest_main VectorSimilarity)
62
62
63
+ if (USE_SVS)
64
+ add_executable (test_svs ../utils/mock_thread_pool.cpp test_svs.cpp unit_test_utils.cpp)
65
+ target_link_libraries (test_svs PUBLIC gtest_main VectorSimilarity)
66
+ endif ()
67
+
63
68
include (GoogleTest)
64
69
65
70
gtest_discover_tests(test_hnsw)
@@ -76,7 +81,5 @@ gtest_discover_tests(test_int8 TEST_PREFIX INT8UNIT_)
76
81
gtest_discover_tests(test_uint8 TEST_PREFIX UINT8UNIT_)
77
82
78
83
if (USE_SVS)
79
- add_executable (test_svs ../utils/mock_thread_pool.cpp test_svs.cpp unit_test_utils.cpp)
80
- target_link_libraries (test_svs PUBLIC gtest_main VectorSimilarity)
81
84
gtest_discover_tests(test_svs)
82
- endif ()
85
+ endif ()
You can’t perform that action at this time.
0 commit comments