openstack-ansible/releasenotes/notes/build-rally-with-constraints-60e12254103018c4.yaml
Jesse Pretorius 26c2c6f695 Remove rally_git_* overrides
Presently, rally in the integrated build is installed from PyPI, but without
constraints. This means the version installed may not be what is expected,
and the libraries that it pulls in are unconstrained and may cause failure
as has been seen recently with the new release of the cmd2 library which is
python3 only.

This commit removes the playbooks/defaults/repo_packages/openstack_testing.yml
file as it only contains the rally git overrides. This results in the rally
venv getting installed from PyPI but with upper-constraints applied.

Needed-By: https://review.openstack.org/570905
Change-Id: I79f37deb3615046e6c944008cc73d5cf2da5bb99
2018-05-31 13:33:20 +01:00

12 lines
636 B
YAML

---
features:
- When ``venvwithindex=True`` and ``ignorerequirements=True`` are both specified
in ``rally_git_install_fragments`` (as was previously the default), this
results in rally being installed from PyPI without any constraints being
applied. This results in inconsistent builds from day to day, and can cause
build failures for stable implementations due to new library releases.
Going forward, we remove the ``rally_git_*`` overrides in
``playbooks/defaults/repo_packages/openstack_testing.yml`` so that
the integrated build installs rally from PyPI, but with appropriate
constraints applied.