Skip to content

Commit

Permalink
test: [skip e2e][cherry-pick]fix pytest_addoption type (#38861)
Browse files Browse the repository at this point in the history
pr: #38860
/kind improvement

Signed-off-by: zhuwenxing <[email protected]>
  • Loading branch information
zhuwenxing authored Dec 31, 2024
1 parent 4813fc0 commit fb8b880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python_client/deploy/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fb8b880

Please sign in to comment.