Skip to content

Commit 475e625

Browse files
committed
Use correct pip installation command
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 9f556ea commit 475e625

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,20 @@ jobs:
7474
image_name: ubuntu-20.04
7575
python_versions: ['3.6', '3.7', '3.8', '3.9']
7676
test_suites:
77-
all: tmp/bin/pip --force-reinstall --upgrade -e . && tmp/bin/pytest -n 2 -vvs
77+
all: tmp/bin/pip install --force-reinstall --upgrade -e . && tmp/bin/pytest -n 2 -vvs
7878

7979
- template: etc/ci/azure-win.yml
8080
parameters:
8181
job_name: win2019_cpython_latest_from_pip
8282
image_name: windows-2019
8383
python_versions: ['3.6', '3.7', '3.8', '3.9']
8484
test_suites:
85-
all: tmp\Scripts\pip --force-reinstall --upgrade -e . && tmp\Scripts\pytest -n 2 -vvs
85+
all: tmp\Scripts\pip install --force-reinstall --upgrade -e . && tmp\Scripts\pytest -n 2 -vvs
8686

8787
- template: etc/ci/azure-posix.yml
8888
parameters:
8989
job_name: macos1015_cpython_latest_from_pip
9090
image_name: macos-10.15
9191
python_versions: ['3.6', '3.7', '3.8', '3.9']
9292
test_suites:
93-
all: tmp/bin/pip --force-reinstall --upgrade -e . && tmp/bin/pytest -n 2 -vvs
93+
all: tmp/bin/pip install --force-reinstall --upgrade -e . && tmp/bin/pytest -n 2 -vvs

0 commit comments

Comments
 (0)