summaryrefslogtreecommitdiff
path: root/nova/tests/conf_fixture.py
diff options
context:
space:
mode:
authorSean Dague <sean.dague@samsung.com>2014-04-07 14:22:43 -0400
committerSean Dague <sean.dague@samsung.com>2014-04-07 15:02:46 -0400
commitf350f24cd2bad0d62a737c0f100e40cdfbbb36f6 (patch)
tree201a648a05f722b74c57a1be9eca48770f174553 /nova/tests/conf_fixture.py
parente3121e643ccfb2175ccbf130a690054665bb64eb (diff)
downloadnova-f350f24cd2bad0d62a737c0f100e40cdfbbb36f6.tar.gz
Revert "Use debug level logging during unit tests"
This change made the subunit_log 190 MB on every run (14MB in the gz version). It also dramatically increases the memory needed to run unit tests. We need to revert and come at this problem with fresh eyes to address the problem at hand without effectively overrunning people's environments. This reverts commit f9090b0bd796f8c2fdf8d0a23173f3adee71b3df. Change-Id: Ia1cfc3d874ddf4f8ee2037b487d22f968585854e
Diffstat (limited to 'nova/tests/conf_fixture.py')
-rw-r--r--nova/tests/conf_fixture.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/tests/conf_fixture.py b/nova/tests/conf_fixture.py
index ea25656258..c529ec8f3b 100644
--- a/nova/tests/conf_fixture.py
+++ b/nova/tests/conf_fixture.py
@@ -56,6 +56,7 @@ class ConfFixture(config_fixture.Config):
self.conf.set_default('connection', "sqlite://", group='database')
self.conf.set_default('sqlite_synchronous', False, group='database')
self.conf.set_default('use_ipv6', True)
+ self.conf.set_default('verbose', True)
self.conf.set_default('vlan_interface', 'eth0')
config.parse_args([], default_config_files=[])
self.addCleanup(utils.cleanup_dns_managers)