From d9b8e1b1073ed172c10cd29e7ded6e65401d3c5d Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sun, 22 Mar 2020 13:13:53 +0100 Subject: Doesn't redirect stderr when getting verifier id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The logic fails when rally produces warnings [1]. It also updates Rally OpenStack and checks if the previous error has been solved[2]. TypeError: _discover_or_create_flavor() missing 1 required positional argument: 'flv_disk' [3] [1] https://build.opnfv.org/ci/job/functest-opnfv-functest-healthcheck-latest-tempest_smoke-run/757/console [2] https://github.com/openstack/rally-openstack/commit/e62315115af20e53f6c7205494ba0008634047ed [3] https://build.opnfv.org/ci/job/functest-opnfv-functest-healthcheck-latest-tempest_smoke-run/629/console Change-Id: Ia1daaa76d7cef7f30904c1f3bd42e2f6a6ba10af Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/openstack/tempest/tempest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functest') diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py index 4ed964644..0bb1e6e0f 100644 --- a/functest/opnfv_tests/openstack/tempest/tempest.py +++ b/functest/opnfv_tests/openstack/tempest/tempest.py @@ -201,7 +201,7 @@ class TempestCommon(singlevm.VmReady2): "/ {print $2}'") proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, - stderr=subprocess.STDOUT) + stderr=subprocess.DEVNULL) verifier_uuid = proc.stdout.readline().rstrip() return verifier_uuid.decode("utf-8") -- cgit 1.2.3-korg