test: [skip e2e]fix pytest_addoption type (#38860)

/kind improvement

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
pull/38886/head
zhuwenxing 2024-12-31 14:12:58 +08:00 committed by GitHub
parent 6b105837b4
commit 2f6d4efa68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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