mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
3336b91ce6
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
12 lines
246 B
Python
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")
|
|
|