From e0b7c0ad95d44eea4db4a3fb532f51688c97c8fc Mon Sep 17 00:00:00 2001 From: rexlee8776 Date: Wed, 24 Oct 2018 02:49:54 +0000 Subject: fix yardstick verify job The regex is not compatible with pip version 18. JIRA: INFRA-310 Change-Id: I6eaf1e3fac183f85c277934929e9065efa88d877 Signed-off-by: rexlee8776 (cherry picked from commit a4084d27de22c64ecb690369c7bed49175703adf) --- yardstick/tests/functional/common/test_packages.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'yardstick') diff --git a/yardstick/tests/functional/common/test_packages.py b/yardstick/tests/functional/common/test_packages.py index 5dead4e55..14de46bcf 100644 --- a/yardstick/tests/functional/common/test_packages.py +++ b/yardstick/tests/functional/common/test_packages.py @@ -39,16 +39,21 @@ class PipPackagesTestCase(base.BaseFunctionalTestCase): utils.execute_command('sudo rm -rf %s' % self.TMP_FOLDER) def _remove_package(self, package): - os.system('%s pip uninstall %s -y' % (self.PYTHONPATH, package)) + os.system('%s python -m pip uninstall %s -y' % + (self.PYTHONPATH, package)) def _list_packages(self): pip_list_regex = re.compile( r"(?P[\w\.-]+) \((?P[\w\d_\.\-]+),*.*\)") + pip_list_regex_18 = re.compile( + r"(?P[\w\.-]+)[\s]+(?P[\w\d_\.\-]+),*.*") pkg_dict = {} - pkgs = utils.execute_command('pip list', + pkgs = utils.execute_command('python -m pip list', env={'PYTHONPATH': self.TMP_FOLDER}) for line in pkgs: match = pip_list_regex.match(line) + if not match: + match = pip_list_regex_18.match(line) if match and match.group('name'): pkg_dict[match.group('name')] = match.group('version') return pkg_dict -- cgit 1.2.3-korg