@@ -194,39 +194,39 @@ jobs:
194194 image_name : ubuntu-22.04
195195 python_versions : ['3.10', '3.11', '3.12', '3.13', '3.14']
196196 test_suites :
197- all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
197+ all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && (venv/bin/pip uninstall -y commoncode || true) && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
198198
199199 - template : etc/ci/azure-posix.yml
200200 parameters :
201201 job_name : ubuntu24_cpython_latest_from_pip
202202 image_name : ubuntu-24.04
203203 python_versions : ['3.10', '3.11', '3.12', '3.13', '3.14']
204204 test_suites :
205- all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
205+ all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && (venv/bin/pip uninstall -y commoncode || true) && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
206206
207207 - template : etc/ci/azure-posix.yml
208208 parameters :
209209 job_name : macos14_cpython_latest_from_pip
210210 image_name : macos-14
211211 python_versions : ['3.10', '3.11', '3.12', '3.13', '3.14']
212212 test_suites :
213- all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
213+ all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && (venv/bin/pip uninstall -y commoncode || true) && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
214214
215215 - template : etc/ci/azure-win.yml
216216 parameters :
217217 job_name : win2019_cpython_latest_from_pip
218218 image_name : windows-2025-vs2026
219219 python_versions : ['3.10', '3.11', '3.12', '3.13', '3.14']
220220 test_suites :
221- all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
221+ all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv\Scripts\pip uninstall -y commoncode & venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
222222
223223 - template : etc/ci/azure-win.yml
224224 parameters :
225225 job_name : win2022_cpython_latest_from_pip
226226 image_name : windows-2022
227227 python_versions : ['3.10', '3.11', '3.12', '3.13', '3.14']
228228 test_suites :
229- all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
229+ all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv\Scripts\pip uninstall -y commoncode & venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
230230
231231
232232# ###############################################################################
0 commit comments