From f704e3edef2bc889344e9d78b4630019217625be Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Fri, 17 Jan 2025 16:59:02 +0800 Subject: [PATCH] test: [skip e2e][cherry-pick]fix pytest_addoption type (#39397) pr: https://github.com/milvus-io/milvus/pull/38860 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 f21dfc8504..3e7ac8e896 100644 --- a/tests/python_client/deploy/conftest.py +++ b/tests/python_client/deploy/conftest.py @@ -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