File: .coveragerc

package info (click to toggle)
drf-yasg-nonfree 1.21.10-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 15,784 kB
  • sloc: javascript: 6,247; python: 5,073; makefile: 31; sh: 13
file content (45 lines) | stat: -rw-r--r-- 1,033 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[run]
source = drf_yasg
branch = True
parallel = true
disable_warnings = module-not-measured

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain about missing debug-only code:
    def __repr__
    if self/.debug

    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise ImproperlyConfigured
    raise TypeError
    raise NotImplementedError
    warnings.warn
    logger.debug
    logger.info
    logger.warning
    logger.error
    return NotHandled

    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.:

    # Don't complain if we don't hit invalid schema configurations
    raise SwaggerGenerationError

ignore_errors = True
precision = 2
show_missing = True

[paths]
source =
    src/drf_yasg/
    .tox/*/Lib/site-packages/drf_yasg/
    .tox/*/lib/*/site-packages/drf_yasg/
    /home/travis/virtualenv/*/lib/*/site-packages/drf_yasg/