We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 06fa9df + 34c1679 commit 9f13030Copy full SHA for 9f13030
1 file changed
lib/tempest
@@ -554,7 +554,10 @@ function configure_tempest {
554
if [[ "$OFFLINE" != "True" ]]; then
555
tox -revenv-tempest --notest
556
fi
557
- tox -evenv-tempest -- pip install -c $REQUIREMENTS_DIR/upper-constraints.txt -r requirements.txt
+
558
+ # The requirements might be on a different branch, while tempest needs master requirements.
559
+ git -C $REQUIREMENTS_DIR show master:upper-constraints.txt > u-c-m.txt
560
+ tox -evenv-tempest -- pip install -c u-c-m.txt -r requirements.txt
561
562
# Auth:
563
iniset $TEMPEST_CONFIG auth tempest_roles "Member"
0 commit comments