diff options
| author | termie <github@anarkystic.com> | 2011-01-30 21:38:58 -0800 |
|---|---|---|
| committer | termie <github@anarkystic.com> | 2011-01-30 21:38:58 -0800 |
| commit | f3652fd4814eb5d9df851422aa946f283263fd07 (patch) | |
| tree | 32849c02457bb5b5597d42fd856ab198528e67dd | |
| parent | 8fbfae5065c07a4c0258585ab19c838fc87b0913 (diff) | |
add logging.basicConfig() to tests
| -rw-r--r-- | run_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py index 5c8436aee..24786e8ad 100644 --- a/run_tests.py +++ b/run_tests.py @@ -26,6 +26,8 @@ from nose import config from nose import result from nose import core +from nova import log as logging + class NovaTestResult(result.TextTestResult): def __init__(self, *args, **kw): @@ -58,6 +60,7 @@ class NovaTestRunner(core.TextTestRunner): if __name__ == '__main__': + logging.basicConfig() c = config.Config(stream=sys.stdout, env=os.environ, verbosity=3, |
