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 455be66 + e1c0406 commit 96fda35Copy full SHA for 96fda35
1 file changed
lib/tempest
@@ -690,6 +690,11 @@ function install_tempest {
690
git_clone $TEMPEST_REPO $TEMPEST_DIR $TEMPEST_BRANCH
691
pip_install 'tox!=2.8.0'
692
pushd $TEMPEST_DIR
693
+ # NOTE(gmann): checkout the TEMPEST_BRANCH in case TEMPEST_BRANCH
694
+ # is tag name not master. git_clone would not checkout tag because
695
+ # TEMPEST_DIR already exist until RECLONE is true.
696
+ git checkout $TEMPEST_BRANCH
697
+
698
tox -r --notest -efull
699
# NOTE(mtreinish) Respect constraints in the tempest full venv, things that
700
# are using a tox job other than full will not be respecting constraints but
0 commit comments