From b72e4467e1332cd441def32328249ace99c21b18 Mon Sep 17 00:00:00 2001 From: Elena Ezhova Date: Tue, 19 May 2015 18:18:53 +0300 Subject: Remove self.pre_run calls in packaging.py pre_run was a method of _PipInstallTestRequires class which was removed by https://review.openstack.org/#/c/181785/. Change-Id: I2118f2a96d0c9984797424e5dda47547c8e24621 Closes-Bug: #1456663 --- pbr/packaging.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pbr/packaging.py b/pbr/packaging.py index ebf1a8d..74d346d 100644 --- a/pbr/packaging.py +++ b/pbr/packaging.py @@ -179,7 +179,6 @@ try: command_name = 'test' def run(self): - self.pre_run() # Can't use super - base class old-style class testr_command.Testr.run(self) @@ -201,7 +200,6 @@ try: command_name = 'test' def run(self): - self.pre_run() # Can't use super - base class old-style class commands.nosetests.run(self) -- cgit v1.2.1