Skip to content

Commit 612c0a4

Browse files
committed
Force reinstalling the version of click in CI matrix test
This ensures that the correct Click version is used in each test and avoids dependency resolution conflicts caused by the editable install in the configure script. Signed-off-by: Theodore Aptekarev <[email protected]>
1 parent e6720c9 commit 612c0a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
click_versions: |
7171
for clk_ver in 8.2.0 8.2.1;
7272
do
73-
pip install click==$clk_ver;
73+
venv/bin/pip uninstall -y click;
74+
venv/bin/pip install --force-reinstall click==$clk_ver;
7475
venv/bin/pytest -vvs tests/test_cliutils_progressbar.py;
7576
done
7677

0 commit comments

Comments
 (0)