diff options
author | Ghanshyam Mann <gmann@ghanshyammann.com> | 2023-01-27 14:59:38 -0600 |
---|---|---|
committer | Takashi Kajinami <tkajinam@redhat.com> | 2023-04-11 02:13:33 +0900 |
commit | 37e9da2a5a4ab8e1d9fa13a0f1b405e71ee69be3 (patch) | |
tree | 4d99114d06f08d738783be8ef1bf9a2cd81e0fa6 /test-requirements.txt | |
parent | 23a6768ab11ec04e698b4e0cc7ab8c094f4616e8 (diff) | |
download | heat-37e9da2a5a4ab8e1d9fa13a0f1b405e71ee69be3.tar.gz |
Fix setting the tempest virtual env constraints env var
Heat upgrade script set the env var TOX_CONSTRAINTS_FILE/UPPER_CONSTRAINTS_FILE
which are used to use the constraints during Tempest virtual env
installation. Those env var are set to non-master constraint when
we need to use non-master constraints but when we need to use the
master constraints we do not set/reset them point to master constraints.
This create the issue when this grenade script install the tempest with
stable constraints but with master Tempest and as there is mismatch of
constraints now with fasteners of stable branches. Below is failure
of heat greande job on stable/yoga
- https://zuul.opendev.org/t/openstack/build/3aaec4d59bb84068bb4d4428ea747cbd/log/controller/logs/grenade.sh_log.txt#3245
Similar way, role should set stable constraints only for the stable EM branch
not for all otherwise it fail when constraints/requirements are bumped.
- https://zuul.opendev.org/t/openstack/build/74f86b8097f44c35acaffdcfe41d9693
We should set/reset those constraint env var to master constraints if configuration
tell to use the master constraints.
Note:
This backport includes change Ie552e6398c10797e4df4afe757760c48ca7f80af
to unblock gate by a single commit.
Closes-Bug: #2003993
Change-Id: I024cd134577338fc1075e7742df7f006dc914646
(cherry picked from commit dbbba907d396158ce3bf3a207a8875b9fbb5a5b1)
(cherry picked from commit b29266398fbb4e623faaa6a894de2a33bb2846a7)
(cherry picked from commit 391684581b60bf1ca7a88f2c52898cd22cfd48f1)
(cherry picked from commit 1360cfdfa3026ce09e86c9f67e38c390229477fd)
Diffstat (limited to 'test-requirements.txt')
-rw-r--r-- | test-requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-requirements.txt b/test-requirements.txt index bd3032139..62872ccaa 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -9,7 +9,7 @@ hacking>=3.0.1,<3.1.0 # Apache-2.0 # care of pyflakes version compatibilty. pyflakes>=2.1.1 -bandit!=1.6.0,>=1.1.0 # Apache-2.0 +bandit!=1.6.0,>=1.1.0,<1.7.5 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0 fixtures>=3.0.0 # Apache-2.0/BSD kombu!=4.0.2,>=5.0.1 # BSD |