File: .coveragerc

package info (click to toggle)
django-reversion 3.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 796 kB
  • sloc: python: 2,518; makefile: 22
file content (21 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[run]
source =
    reversion
    test_app
    test_project

[report]
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise NotImplementedError
    assert False

    # Don't complain if tests don't hit model __str__ methods.
    def __str__

show_missing = True
skip_covered = True