mirror of https://github.com/milvus-io/milvus.git
test: [skip e2e]fix pytest_addoption type (#38860)
/kind improvement Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>pull/38886/head
parent
6b105837b4
commit
2f6d4efa68
|
@ -20,7 +20,7 @@ delete_timeout = 60
|
|||
|
||||
def pytest_addoption(parser):
|
||||
|
||||
parser.addoption('--data_size', type='int', action='store', default=3000, help="data size for deploy test")
|
||||
parser.addoption('--data_size', type=int, action='store', default=3000, help="data size for deploy test")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
Loading…
Reference in New Issue