Add .gitreview

This file is needed for every developer working on it. It is also needed
by our bots like the requirements bot that is enabled on this
repository.

Fixes also the following pep8 warning so that the tests pass:
./tests/ironic_lib/test_disk_utils.py:493:1: W391 blank line at end of
file

We need both changes together to avoid a chicken/egg problem.

Change-Id: I7078c2f8a0cbf0544ae5cad97076118bc5741ec7
This commit is contained in:
Andreas Jaeger 2015-03-27 07:44:35 +01:00
parent 1d78cb7167
commit 230cfe9638
2 changed files with 4 additions and 1 deletions

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=openstack/ironic-lib.git

View File

@ -490,4 +490,3 @@ class OtherFunctionTestCase(test_base.BaseTestCase):
return_value=mb + 1)
self.assertEqual(2, disk_utils.get_image_mb('x', False))
self.assertEqual(2, disk_utils.get_image_mb('x', True))