Jan Dittberner
b183465d5e
* add logging.config.fileConfig in gnuviechadmin/tests/__init__.py * provide default logging configuration in test.ini git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/trunk@259 a67ec6bc-e5d5-0310-a910-815c51eb3124
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2008 by Jan Dittberner.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
# USA.
|
|
#
|
|
# Version: $Id$
|
|
"""Gnuviechadmin application test package
|
|
|
|
When the test runner finds and executes test within this directory,
|
|
this file will be loaded to setup the test environment.
|
|
|
|
It registers the root directory of the project in sys.path and
|
|
pkg_resources, in case the project hasn't been installed with
|
|
setuptools.
|
|
"""
|
|
import os
|
|
import sys
|
|
import logging.config
|
|
from unittest import TestCase
|
|
|
|
import pkg_resources
|
|
|
|
here_dir = os.path.dirname(os.path.abspath(__file__))
|
|
conf_dir = os.path.dirname(os.path.dirname(here_dir))
|
|
|
|
sys.path.insert(0, conf_dir)
|
|
pkg_resources.working_set.add_entry(conf_dir)
|
|
|
|
test_file = os.path.join(conf_dir, 'test.ini')
|
|
logging.config.fileConfig(test_file)
|