mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-04 00:51:06 -05:00
12 lines
236 B
Python
12 lines
236 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(params=[False, True], scope="module")
|
|
def on_disk_vectors(request):
|
|
return request.param
|
|
|
|
|
|
@pytest.fixture(params=[False, True], scope="module")
|
|
def on_disk_payload(request):
|
|
return request.param
|