Revert "Funnel debug logging through nose properly."

This fixes bug 1015613

This reverts commit 95fb6e5f89.

Change-Id: I827475c86d6f9166c0ee3ba9b0cc9a0a5105c049
This commit is contained in:
Mark Washenberger 2012-06-20 15:24:17 +00:00
parent a1fbd0baa6
commit f07a4db6cd
2 changed files with 3 additions and 4 deletions

View File

@ -20,12 +20,10 @@
import __builtin__
setattr(__builtin__, '_', lambda x: x)
import logging
import sys
# Set up logging to output debugging
import logging
logger = logging.getLogger()
hdlr = logging.StreamHandler(sys.stdout)
hdlr = logging.FileHandler('run_tests.log', 'w')
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
hdlr.setFormatter(formatter)
logger.addHandler(hdlr)

View File

@ -8,6 +8,7 @@ setenv = VIRTUAL_ENV={envdir}
NOSE_OPENSTACK_RED=0.05
NOSE_OPENSTACK_YELLOW=0.025
NOSE_OPENSTACK_SHOW_ELAPSED=1
NOSE_OPENSTACK_STDOUT=1
deps = -r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
commands = nosetests {posargs}