Skip to content

Commit

Permalink
Always install azure-cli-testsdk with dependencies (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzhou-msft authored Jun 22, 2020
1 parent 61e9516 commit 798372b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion azdev/operations/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,12 @@ def _install_cli(cli_path, deps=None):
)

pip_cmd("install -e {}/src/azure-cli --no-deps".format(cli_path), "Installing `azure-cli`...")

# The dependencies of testsdk are not in requirements.txt as this package is not needed by the
# azure-cli package for running commands.
# Here we need to install with dependencies for azdev test.
pip_cmd(
"install -e {}/src/azure-cli-testsdk --no-deps".format(cli_path),
"install -e {}/src/azure-cli-testsdk".format(cli_path),
"Installing `azure-cli-testsdk`..."
)
import platform
Expand Down

0 comments on commit 798372b

Please sign in to comment.