From fb8b880212cc27a3f2cb0c2c50923e4064c9cb69 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Tue, 31 Dec 2024 14:12:58 +0800 Subject: [PATCH] test: [skip e2e][cherry-pick]fix pytest_addoption type (#38861) pr: https://github.com/milvus-io/milvus/pull/38860 /kind improvement Signed-off-by: zhuwenxing --- tests/python_client/deploy/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_client/deploy/conftest.py b/tests/python_client/deploy/conftest.py index f21dfc8504c23..3e7ac8e896d6a 100644 --- a/tests/python_client/deploy/conftest.py +++ b/tests/python_client/deploy/conftest.py @@ -20,7 +20,7 @@ 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