Do not install reno globally using pip

It does not work on Ubuntu Noble which requires using virtual
env when you try to install packages using pip. Also
for deployment tests reno is not needed because we build
charts with SKIP_CHANGELOG=1

Change-Id: I8f0578ed2e1d0e757add155c618eea2e8a2e30d2
This commit is contained in:
Vladimir Kozhukalov 2025-03-05 17:18:00 -06:00
parent c8e87da4ae
commit ea130ff50c
2 changed files with 1 additions and 6 deletions

View File

@ -58,9 +58,4 @@
- uuid-runtime
- vim
- wireguard
- name: Install reno
pip:
name: reno>=4.1.0
extra_args: "--ignore-installed"
...

View File

@ -19,5 +19,5 @@ make all SKIP_CHANGELOG=1
# Build all OSH charts (necessary for Openstack deployment)
(
cd ${OSH_PATH:-"../openstack-helm"} &&
make all SKIP_CHANGELOG=1
make all SKIP_CHANGELOG=1
)