view .coveragerc @ 8265:ecd3cf91b293

celery: drop config settings not supported in Celery 4 CELERY_SEND_TASK_ERROR_EMAILS has been removed, according to https://docs.celeryproject.org/en/3.0/whatsnew-4.0.html#features-removed-for-simplicity : "Tasks no longer sends error emails. This also removes support for app.mail_admins, and any functionality related to sending emails." The "ADMINS" prefix might be a left-over from the long removed celery.conf.ADMINS - last seen on https://docs.celeryproject.org/en/2.1-archived/reference/celery.conf.html#celery.conf.ADMINS . The "ROUTES" prefix might refer to "CELERY_ROUTES" ... but it doesn't take a simple string list anyway, so there is no point in treating it as a list value.
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 20 Feb 2020 01:35:22 +0100
parents 4b241f198cf2
children d332fca29474
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 is not a part of the Kallithea web app
    kallithea/lib/dbmigrate/*
    # 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

# same omit lines should be present in sections 'run' and 'report'
[report]
omit =
    # the bin scripts are not part of the Kallithea web app
    kallithea/bin/*
    # we ship with no active extensions
    kallithea/config/rcextensions/*
    # dbmigrate is not a part of the Kallithea web app
    kallithea/lib/dbmigrate/*
    # 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

[paths]
source =
    kallithea/
    **/workspace/*/kallithea