def html_module_errors(filename, errors):
    """
    Creates an index page of packages and modules which had problems being imported
    for coverage analysis at the specified filename.

    It uses `templates.default_module_errors` to create the page. The template
    contains the following sections which need to be rendered and assembled into
    the final HTML.

    TOP: Contains the HTML declaration and head information, as well as the
         inline stylesheet.

    CONTENT_HEADER: The header portion of the body.

    CONTENT_BODY: A list of excluded packages and modules. Requires the following
                  variable:
                  * ``%(long_desc)s`` A long description of what this page
                    is about.
                  * ``%(exception_list)s`` List of package and module names
                    which is generated by looping through each line and
                    concatenanting together rendered ``EXCEPTION_LINE``
                    template (see below).

    BOTTOM: Just a closing ``</body></html>``

    EXCEPTION_LINE: Used to assemble the content of ``%(exception_list)s`` for ``CONTENT_BODY``.
                    Requires the following variable:
                    * ``%(module_name)s``
    """
    long_desc = """\
    <code>django_coverage.utils.module_tools.find_or_load_module</code> had
    problems importing these packages and modules:
    """
    html_module_exceptions(filename, errors, module_errors, long_desc)
Example #2
0
def html_module_excludes(filename, excludes):
    """
    Creates an index page of packages and modules which were excluded from the
    coverage analysis at the specified filename.

    It uses `templates.default_module_excludes` to create the page. The template
    contains the following sections which need to be rendered and assembled into
    the final HTML.

    TOP: Contains the HTML declaration and head information, as well as the
         inline stylesheet.

    CONTENT_HEADER: The header portion of the body.

    CONTENT_BODY: A list of excluded packages and modules. Requires the following
                  variable:
                  * ``%(long_desc)s`` A long description of what this page
                    is about.
                  * ``%(exception_list)s`` List of package and module names
                    which is generated by looping through each line and
                    concatenanting together rendered ``EXCEPTION_LINE``
                    template (see below).

    BOTTOM: Just a closing ``</body></html>``

    EXCEPTION_LINE: Used to assemble the content of ``%(exclude_list)s`` for ``CONTENT_BODY``.
                    Requires the following variable:
                    * ``%(module_name)s``
    """
    long_desc = """\
    These packages and modules were excluded from the coverage analysis in 
    <code>django.conf.settings.COVERAGE_MODULE_EXCLUDES</code> or they do
    not contain any executable statements:
    """
    html_module_exceptions(filename, excludes, module_excludes, long_desc)
def html_module_errors(filename, errors):
    """
    Creates an index page of packages and modules which had problems being imported
    for coverage analysis at the specified filename.

    It uses `templates.default_module_errors` to create the page. The template
    contains the following sections which need to be rendered and assembled into
    the final HTML.

    TOP: Contains the HTML declaration and head information, as well as the
         inline stylesheet.

    CONTENT_HEADER: The header portion of the body.

    CONTENT_BODY: A list of excluded packages and modules. Requires the following
                  variable:
                  * ``%(long_desc)s`` A long description of what this page
                    is about.
                  * ``%(exception_list)s`` List of package and module names
                    which is generated by looping through each line and
                    concatenanting together rendered ``EXCEPTION_LINE``
                    template (see below).

    BOTTOM: Just a closing ``</body></html>``

    EXCEPTION_LINE: Used to assemble the content of ``%(exception_list)s`` for ``CONTENT_BODY``.
                    Requires the following variable:
                    * ``%(module_name)s``
    """
    long_desc = """\
    <code>django_coverage.utils.module_tools.find_or_load_module</code> had
    problems importing these packages and modules:
    """
    html_module_exceptions(filename, errors, module_errors, long_desc)
Example #4
0
def html_module_excludes(filename, excludes):
    """
    Creates an index page of packages and modules which were excluded from the
    coverage analysis at the specified filename.

    It uses `templates.default_module_excludes` to create the page. The template
    contains the following sections which need to be rendered and assembled into
    the final HTML.

    TOP: Contains the HTML declaration and head information, as well as the
         inline stylesheet.

    CONTENT_HEADER: The header portion of the body.

    CONTENT_BODY: A list of excluded packages and modules. Requires the following
                  variable:
                  * ``%(long_desc)s`` A long description of what this page
                    is about.
                  * ``%(exception_list)s`` List of package and module names
                    which is generated by looping through each line and
                    concatenanting together rendered ``EXCEPTION_LINE``
                    template (see below).

    BOTTOM: Just a closing ``</body></html>``

    EXCEPTION_LINE: Used to assemble the content of ``%(exclude_list)s`` for ``CONTENT_BODY``.
                    Requires the following variable:
                    * ``%(module_name)s``
    """
    long_desc = """\
    These packages and modules were excluded from the coverage analysis in 
    <code>django.conf.settings.COVERAGE_MODULE_EXCLUDES</code> or they do
    not contain any executable statements:
    """
    html_module_exceptions(filename, excludes, module_excludes, long_desc)