Skip to content

Commit 0b32b2f

Browse files
committed
Use sdist installations instead of local installs
1 parent f224c48 commit 0b32b2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,18 @@ jobs:
7676
script: "python -m coverage run setup.py test"
7777
displayName: "Test mbed-os-tools"
7878
-
79-
script: "pip install ."
79+
script: "python setup.py sdist && pip install dist/*"
8080
displayName: "Install mbed-os-tools"
8181
-
82-
script: 'pip install . && pip install -r test_requirements.txt'
82+
script: 'python setup.py sdist && pip install dist/*'
8383
displayName: 'Install mbed-ls'
8484
workingDirectory: 'packages/mbed-ls'
8585
-
86-
script: 'pip install . && pip install -r test_requirements.txt'
86+
script: 'python setup.py sdist && pip install dist/*'
8787
displayName: 'Install mbed-host-tests'
8888
workingDirectory: 'packages/mbed-host-tests'
8989
-
90-
script: 'pip install . && pip install -r test_requirements.txt'
90+
script: 'python setup.py sdist && pip install dist/*'
9191
displayName: 'Install mbed-greentea'
9292
workingDirectory: 'packages/mbed-greentea'
9393
-

0 commit comments

Comments
 (0)