view .coveragerc @ 6578:0d4dd9380a45

config: activate logging on 'gearbox serve' With the switch from paster to gearbox, early logging did not show on the console anymore. This includes the initialization logging of TurboGears2. For our own gearbox commands, the activation of logging is done in kallithea/lib/paster_commands/common.py:_bootstrap_config, but for 'serve' this method is not used. 'gearbox serve' immediately runs the 'paste.app_factory' specified in setup.py, which is make_app. Extend make_app with logging initialization in the same way as is done in _bootstrap_config.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Mon, 20 Mar 2017 21:06:31 +0100
parents 7790b34a0cef
children 0acb46763886
line wrap: on
line source

[run]
omit =
    # the bin scripts are not part of the Kallithea web app
    kallithea/bin/*
    # we ship with no active extensions
    kallithea/config/rcextensions/*
    # dbmigrate and paster_commands are not part of the Kallithea web app
    kallithea/lib/dbmigrate/*
    kallithea/lib/paster_commands/*
    # the tests themselves should not be part of the coverage report
    kallithea/tests/*
    # the scm hooks are not run in the kallithea process
    kallithea/config/post_receive_tmpl.py
    kallithea/config/pre_receive_tmpl.py