summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena Ezhova <eezhova@mirantis.com>2015-05-19 18:18:53 +0300
committerIlya Shakhat <ishakhat@mirantis.com>2015-05-20 00:01:07 +0300
commitb72e4467e1332cd441def32328249ace99c21b18 (patch)
treec68740393035ec97cf3dd1d867175e20de459bb3
parent8e87679d0d7d968749f78565c20f6cead640997c (diff)
downloadpbr-b72e4467e1332cd441def32328249ace99c21b18.tar.gz
Remove self.pre_run calls in packaging.py1.0.1
pre_run was a method of _PipInstallTestRequires class which was removed by https://review.openstack.org/#/c/181785/. Change-Id: I2118f2a96d0c9984797424e5dda47547c8e24621 Closes-Bug: #1456663
-rw-r--r--pbr/packaging.py2
1 files changed, 0 insertions, 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)