view .coveragerc @ 8752:8bba2d253187

mail: migrate to modern email.message instead of using old compat32 functionality Before, the HTML part could be detected as pure 7-bit and sent as: Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: 7bit Now, it will use: Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable That should work fine too.
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 04 Nov 2020 01:20:24 +0100
parents d332fca29474
children
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/*

# 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/*

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