From c7f96e45c3ba31e814e3154ff329684b070a52c1 Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Tue, 14 Sep 2021 13:11:54 +0800 Subject: [PATCH] Update scale test README (#7872) Signed-off-by: ThreadDao --- tests/python_client/scale/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/python_client/scale/README.md b/tests/python_client/scale/README.md index e3d1597c76..65eeaceeb0 100644 --- a/tests/python_client/scale/README.md +++ b/tests/python_client/scale/README.md @@ -35,16 +35,16 @@ For instance, if the dataNode pod expands from one to two: ### Manually Run a single test scenario manually(take scale dataNode as instance): -- update milvus helm chart path (choose one of the following) - - `export MILVUS_CHART_ENV=/your/milvus-helm/charts/milvus` - - - update MILVUS_CHART = '/home/zong/milvus-helm/charts/milvus' in scale/constants.py +- update milvus helm chart path +```bash + export MILVUS_CHART_ENV=/your/milvus-helm/charts/milvus +``` - run the commands below: ```bash - cd /milvus/tests/python_client/scale + cd /milvus/tests/python_client/scale - pytest test_data_node_scale.py::TestDataNodeScale::test_expand_data_node -v -s + pytest test_data_node_scale.py::TestDataNodeScale::test_expand_data_node -v -s ``` ### Nightly