Skip to content

Commit f3142a1

Browse files
committed
Correct CI pipelines syntax
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent e8b6dd7 commit f3142a1

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

azure-pipelines.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,26 +75,20 @@ jobs:
7575
image_name: ubuntu-20.04
7676
python_versions: ['3.6', '3.7', '3.8', '3.9']
7777
test_suites:
78-
all:
79-
- tmp/bin/pip --force-reinstall --upgrade -e .
80-
- tmp/bin/pytest -n 2 -vvs
78+
all: tmp/bin/pip --force-reinstall --upgrade -e . && tmp/bin/pytest -n 2 -vvs
8179

8280
- template: etc/ci/azure-win.yml
8381
parameters:
8482
job_name: win2019_cpython_latest_from_pip
8583
image_name: windows-2019
8684
python_versions: ['3.6', '3.7', '3.8', '3.9']
8785
test_suites:
88-
all:
89-
- tmp\Scripts\pip --force-reinstall --upgrade -e .
90-
- tmp\Scripts\pytest -n 2 -vvs
86+
all: tmp\Scripts\pip --force-reinstall --upgrade -e . && tmp\Scripts\pytest -n 2 -vvs
9187

9288
- template: etc/ci/azure-posix.yml
9389
parameters:
9490
job_name: macos1015_cpython_latest_from_pip
9591
image_name: macos-10.15
9692
python_versions: ['3.6', '3.7', '3.8', '3.9']
9793
test_suites:
98-
all:
99-
- tmp/bin/pip --force-reinstall --upgrade -e .
100-
- tmp/bin/pytest -n 2 -vvs
94+
all: tmp/bin/pip --force-reinstall --upgrade -e . && tmp/bin/pytest -n 2 -vvs

0 commit comments

Comments
 (0)