From 230cfe9638f0999d62e8519015418a422908d565 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 27 Mar 2015 07:44:35 +0100 Subject: [PATCH] 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 --- .gitreview | 4 ++++ tests/ironic_lib/test_disk_utils.py | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitreview diff --git a/.gitreview b/.gitreview new file mode 100644 index 00000000..5f0700d1 --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=review.openstack.org +port=29418 +project=openstack/ironic-lib.git diff --git a/tests/ironic_lib/test_disk_utils.py b/tests/ironic_lib/test_disk_utils.py index 2c7e0910..b00063d9 100644 --- a/tests/ironic_lib/test_disk_utils.py +++ b/tests/ironic_lib/test_disk_utils.py @@ -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)) -