Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .azure-pipelines/client.test.live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
- powershell: |
python --version
Invoke-WebRequest -UseBasicParsing -Uri https://bootstrap.pypa.io/get-pip.py | Select-Object -ExpandProperty Content | python
python -m pip install -r iot_requirements.txt
python -m pip install -r dev_requirements.txt
displayName: 'Install dependencies'
env:
Expand Down Expand Up @@ -184,6 +185,7 @@ jobs:
- script: |
$(PythonBin) --version
curl -sS https://bootstrap.pypa.io/get-pip.py | $(PythonBin) - --user
$(PythonBin) -m pip install --user -r iot_requirements.txt
$(PythonBin) -m pip install --user -r dev_requirements.txt
displayName: 'Install dependencies'

Expand Down Expand Up @@ -271,6 +273,7 @@ jobs:
- script: |
python --version
curl -sS https://bootstrap.pypa.io/get-pip.py | python - --user
python -m pip install --user -r iot_requirements.txt
python -m pip install --user -r dev_requirements.txt
displayName: 'Install dependencies'

Expand Down
8 changes: 8 additions & 0 deletions iot_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
azure-cli-core
azure-cli-iot
azure-cli-profile
azure-cli-extension
azure-cli-configure
azure-cli-resource
azure-cli-cloud
https://github.com/Azure/azure-iot-cli-extension/archive/master.zip
Loading