Skip to content

Commit c53e812

Browse files
committed
Use correct path in Click version tests #2713
Reference: aboutcode-org/commoncode#31 Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 8a1d7ec commit c53e812

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

azure-pipelines.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,13 @@ jobs:
172172
python_versions: ['3.6', '3.7', '3.8', '3.9']
173173
python_architecture: x64
174174
test_suites:
175-
click_versions: for clk_ver in 8.0.1 7.1.2 7.1.1 7.1 6.7; do pip install click==$clk_ver; scancode -i samples/ -n3 --json foo.json; scancode -i --verbose samples/ -n3 --json foo.json; done
175+
click_versions: |
176+
for clk_ver in 8.0.1 7.1.2 7.1.1 7.1 6.7;
177+
do
178+
bin/pip install click==$clk_ver;
179+
bin/scancode -i samples/ -n3 --json foo.json;
180+
bin/scancode -i --verbose samples/ -n3 --json foo.json;
181+
done
176182
177183
178184

0 commit comments

Comments
 (0)