From 846e3d2983eb575d7bed371fb6441240f20d7ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Piwowarski?= Date: Tue, 14 Mar 2023 14:32:25 +0100 Subject: [PATCH] Change checkout commit in setup_env A bug in test_create_multiple was fixed by this patch [1]. As the test is part of the interop guidelines we should include this fix in refstack-client. [1] https://review.opendev.org/c/openstack/tempest/+/875751 Depends-On: Ie127c2ed159da8a6bc780919cdd4def44e457efb Change-Id: Icfc4c4f270ee559128b165ffa032be0460294d48 --- README.rst | 4 ++-- setup_env | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index fff8b95..5b94c79 100644 --- a/README.rst +++ b/README.rst @@ -26,8 +26,8 @@ We've created an "easy button" for Ubuntu, Centos, RHEL and openSUSE. b. -t option allows to specify tag in Tempest repository which will be installed. For example: execute ``./setup_env -t tags/3`` to install Tempest tag-3. - By default, Tempest 31.1.0 will be installed from commit - 56d259dd78cc9ae974cc5dc24a54dbd8008770e6 (June 2022). + By default, Tempest will be installed from commit + 3c7eebaaf35c9e8a3f00c76cd1741457bdec9fab (April 2023). c. -p option allows to specify python version - 3.8.10 (-p 3) or any equal or above 3.8.0. Default to python 3.8.10. diff --git a/setup_env b/setup_env index 7f37a0e..0178da6 100755 --- a/setup_env +++ b/setup_env @@ -1,8 +1,8 @@ #!/bin/bash -x # Default Tempest commit: -# SHA 56d259dd78cc9ae974cc5dc24a54dbd8008770e6 (June 2022) Tag 31.1.0 -CHECKOUT_POINT=56d259dd78cc9ae974cc5dc24a54dbd8008770e6 +# SHA 3c7eebaaf35c9e8a3f00c76cd1741457bdec9fab (April 2023) +CHECKOUT_POINT=3c7eebaaf35c9e8a3f00c76cd1741457bdec9fab PY_VERSION="3.8.10" UPPER_CONSTRAINTS_FILE="https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt" LOCAL_INTERPRETER=false