~ubuntu-branches/ubuntu/saucy/ubuntuone-client/saucy-proposed

« back to all changes in this revision

Viewing changes to .coveragerc

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2013-07-11 15:11:07 UTC
  • mfrom: (1.1.83)
  • Revision ID: package-import@ubuntu.com-20130711151107-6tbv4n9er446e2yy
Tags: 13.07-0ubuntu1
* New upstream release.
  - Remove libsyncdaemon and convert to pure python project.
* debian/control:
  - Update dependencies for changes.
  - Drop libsyncdaemon packages. (LP: #1196684)
* debian/rules:
  - Convert to pure dh and update for build system changes.
* debian/tests:
  - Add autopkgtest configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# .coveragerc to control coverage.py
 
2
[run]
 
3
branch = True
 
4
 
 
5
[report]
 
6
# Regexes for lines to exclude from consideration
 
7
exclude_lines =
 
8
    # Have to re-enable the standard pragma
 
9
    pragma: no cover
 
10
 
 
11
    # Don't complain about missing debug-only code:
 
12
    def __repr__
 
13
    if self\.debug
 
14
 
 
15
    # Don't complain if tests don't hit defensive assertion code:
 
16
    raise AssertionError
 
17
    raise NotImplementedError
 
18
 
 
19
    # Don't complain if non-runnable code isn't run:
 
20
    if 0:
 
21
    if __name__ == .__main__.:
 
22
 
 
23
ignore_errors = True
 
24
 
 
25
omit =
 
26
    /usr
 
27
    tests