mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
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")
|
|
|