From de460dabffe362ac12e9a599c87409e7d5f1a568 Mon Sep 17 00:00:00 2001 From: ZelinWang Date: Mon, 16 May 2022 15:26:00 +0800 Subject: [PATCH] {CI} pip Install testsdk remove the `--no-deps` parameter (#4824) --- scripts/ci/test_source.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/test_source.sh b/scripts/ci/test_source.sh index 7288f60cd0b..3aef6e1533e 100755 --- a/scripts/ci/test_source.sh +++ b/scripts/ci/test_source.sh @@ -4,7 +4,8 @@ set -ex # Install CLI & CLI testsdk echo "Installing azure-cli-testsdk, azure-cli-core, azure-cli from source code" git clone https://github.com/Azure/azure-cli --depth 1 -find azure-cli/src/ -name setup.py -type f | xargs -I {} dirname {} | xargs pip install --no-deps +find azure-cli/src/ -name setup.py -type f | xargs -I {} dirname {} | grep -v azure-cli-testsdk | xargs -I {} pip install --editable {} --no-deps +pip install --editable azure-cli/src/azure-cli-testsdk pip install -r azure-cli/src/azure-cli/requirements.py3.$(uname).txt echo "Installed."