milvus/tests/python_client/resource_group/conftest.py
zhuwenxing 3336b91ce6
test: add channel exclusive balance test and resource group test (#33093)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
2024-05-31 13:55:52 +08:00

12 lines
246 B
Python

import pytest
def pytest_addoption(parser):
parser.addoption("--image_tag", action="store", default="master-20240514-89a7c34c", help="image_tag")
@pytest.fixture
def image_tag(request):
return request.config.getoption("--image_tag")