[skip e2e]Add sleep time between two deployments (#17224)

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
This commit is contained in:
zhuwenxing 2022-05-26 10:38:01 +08:00 committed by GitHub
parent 7d810ac159
commit c134ea92d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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