Commit 65892ba3 authored by Jin Hai's avatar Jin Hai Committed by GitHub
Browse files

Merge pull request #52 from del-zhenwu/0.5.0

update java-tests and classified python-tests by opensource and inter…

Former-commit-id: 7fa9dc88fd3aacac0d862b89611049de91e5da68
parents c8e2d6b7 35dd05e4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ class TestDeleteVectorsBase:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param
@@ -295,7 +295,7 @@ class TestDeleteVectorsIP:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ class TestIndexBase:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param
@@ -505,7 +505,7 @@ class TestIndexIP:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ class TestSearchBase:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param
+5 −2
Original line number Diff line number Diff line
@@ -590,8 +590,11 @@ class TestTable:
        scope="function",
        params=gen_index_params()
    )
    def get_index_params(self, request):
        yield request.param
    def get_index_params(self, request, args):
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param

    @pytest.mark.level(1)
    def test_preload_table(self, connect, table, get_index_params):
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ class TestTableCount:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param
@@ -183,7 +183,7 @@ class TestTableCountIP:
        params=gen_index_params()
    )
    def get_index_params(self, request, args):
        if "internal" in args:
        if "internal" not in args:
            if request.param["index_type"] == IndexType.IVF_SQ8H:
                pytest.skip("sq8h not support in open source")
        return request.param