File: .coveragerc

package info (click to toggle)
python-tornado 6.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,408 kB
  • sloc: python: 28,501; javascript: 156; sh: 100; ansic: 58; xml: 49; makefile: 49; sql: 23
file content (18 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Test coverage configuration.
# Usage:
#   pip install coverage
#   coverage erase  # clears previous data if any
#   coverage run -m tornado.test.runtests
#   coverage report  # prints to stdout
#   coverage html  # creates ./htmlcov/*.html including annotated source
[run]
branch = true
source = tornado
omit = 
    tornado/platform/*
    tornado/test/*
    */_auto2to3*

[report]
# Ignore missing source files, i.e. fake template-generated "files"
ignore_errors = true