@@ -129,7 +129,7 @@ jobs:
129129 python_versions : ['3.7', '3.8', '3.9']
130130 python_architecture : x64
131131 test_suites :
132- all : Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
132+ all : venv\ Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
133133
134134
135135 - template : etc/ci/azure-win.yml
@@ -139,7 +139,7 @@ jobs:
139139 python_versions : ['3.6', '3.7', '3.8', '3.9']
140140 python_architecture : x64
141141 test_suites :
142- all : Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
142+ all : venv\ Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
143143
144144
145145 - template : etc/ci/azure-posix.yml
@@ -176,9 +176,9 @@ jobs:
176176 click_versions : |
177177 for clk_ver in 8.0.1 7.1.2 7.1.1 7.1 6.7;
178178 do
179- bin/pip install click==$clk_ver;
180- bin/scancode -i samples/ -n3 --json foo.json;
181- bin/scancode -i --verbose samples/ -n3 --json foo.json;
179+ venv/ bin/pip install click==$clk_ver;
180+ venv/ bin/scancode -i samples/ -n3 --json foo.json;
181+ venv/ bin/scancode -i --verbose samples/ -n3 --json foo.json;
182182 done
183183
184184
@@ -338,20 +338,20 @@ jobs:
338338 image_name : ubuntu-20.04
339339 python_versions : ['3.6', '3.7', '3.8', '3.9']
340340 test_suites :
341- all : bin/pip install --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
341+ all : venv/ bin/pip install --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
342342
343343 - template : etc/ci/azure-win.yml
344344 parameters :
345345 job_name : win2019_cpython_latest_from_pip
346346 image_name : windows-2019
347347 python_versions : ['3.6', '3.7', '3.8', '3.9']
348348 test_suites :
349- all : Scripts\pip install --force-reinstall --upgrade -e .[dev] && Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
349+ all : venv\ Scripts\pip install --force-reinstall --upgrade -e .[dev] && venv\ Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
350350
351351 - template : etc/ci/azure-posix.yml
352352 parameters :
353353 job_name : macos1015_cpython_latest_from_pip
354354 image_name : macos-10.15
355355 python_versions : ['3.6', '3.7', '3.8', '3.9']
356356 test_suites :
357- all : bin/pip install --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
357+ all : venv/ bin/pip install --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
0 commit comments