From c134ea92d040450055115b7a6df5984f4f10a2c8 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Thu, 26 May 2022 10:38:01 +0800 Subject: [PATCH] [skip e2e]Add sleep time between two deployments (#17224) Signed-off-by: zhuwenxing --- .github/workflows/deploy-test.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/deploy-test.yaml b/.github/workflows/deploy-test.yaml index 06c3c2e5c6..5a6c9e6ef5 100644 --- a/.github/workflows/deploy-test.yaml +++ b/.github/workflows/deploy-test.yaml @@ -109,6 +109,12 @@ jobs: if [ ${{ matrix.task }} == "upgrade" ]; then python3 action_before_upgrade.py fi + - name: Milvus Idle Time + timeout-minutes: 5 + shell: bash + working-directory: tests/python_client/deploy + run: | + sleep 60s - name: Export logs if: ${{ always() }} shell: bash @@ -271,6 +277,12 @@ jobs: # first test if [ ${{ matrix.task }} == "reinstall" ]; then python scripts/action_before_reinstall.py; fi if [ ${{ matrix.task }} == "upgrade" ]; then python scripts/action_before_upgrade.py; fi + - name: Milvus Idle Time + timeout-minutes: 5 + shell: bash + working-directory: tests/python_client/deploy + run: | + sleep 60s - name: Export logs if: ${{ always() }} shell: bash