From ef3906c1d6b50e25ab1e998e44e1c8584208e457 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Tue, 6 Apr 2010 15:00:24 +0200 Subject: [PATCH] Setup logger to log to test.log for all tests --- tests/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/__init__.py b/tests/__init__.py index e69de29b..380acd17 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,3 @@ +import logging + +logging.basicConfig(filename='test.log', level=logging.DEBUG)