From a8165748a8eeadbb7fdd70e57dbe2252a80734f7 Mon Sep 17 00:00:00 2001 From: JinWang An Date: Mon, 28 Dec 2020 13:47:24 +0900 Subject: [PATCH] Imported Upstream version 5.4.3 --- ChangeLog | 5 +++++ PKG-INFO | 2 +- pbr.egg-info/PKG-INFO | 2 +- pbr/tests/base.py | 4 +++- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4ec3494..f7b345f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ CHANGES ======= +5.4.3 +----- + + 5.4.2 ----- @@ -38,6 +42,7 @@ CHANGES * Set subparser argument required * Remove neutron-lbaas * Install more dependencies for integration testing +* Use more verbose logging for test failure * Update Sphinx requirement * Fix white space handling in file names diff --git a/PKG-INFO b/PKG-INFO index 88e9619..9b9af73 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pbr -Version: 5.4.2 +Version: 5.4.3 Summary: Python Build Reasonableness Home-page: https://docs.openstack.org/pbr/latest/ Author: OpenStack diff --git a/pbr.egg-info/PKG-INFO b/pbr.egg-info/PKG-INFO index 88e9619..9b9af73 100644 --- a/pbr.egg-info/PKG-INFO +++ b/pbr.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pbr -Version: 5.4.2 +Version: 5.4.3 Summary: Python Build Reasonableness Home-page: https://docs.openstack.org/pbr/latest/ Author: OpenStack diff --git a/pbr/tests/base.py b/pbr/tests/base.py index 9c409b0..ea4a458 100644 --- a/pbr/tests/base.py +++ b/pbr/tests/base.py @@ -187,7 +187,9 @@ class CapturedSubprocess(fixtures.Fixture): self.addDetail(self.label + '-stderr', content.text_content(self.err)) self.returncode = proc.returncode if proc.returncode: - raise AssertionError('Failed process %s' % proc.returncode) + raise AssertionError( + 'Failed process args=%r, kwargs=%r, returncode=%s' % ( + self.args, self.kwargs, proc.returncode)) self.addCleanup(delattr, self, 'out') self.addCleanup(delattr, self, 'err') self.addCleanup(delattr, self, 'returncode') -- 2.34.1