17 lines
266 B
Plaintext
17 lines
266 B
Plaintext
|
|
# python-coverage.conf
|
||
|
|
# Configuration file for the coverage analysis of Netzob
|
||
|
|
|
||
|
|
[run]
|
||
|
|
# Ensure branch coverage
|
||
|
|
branch = True
|
||
|
|
|
||
|
|
# Don't cover python standard lib
|
||
|
|
cover_pylib = False
|
||
|
|
|
||
|
|
source = src/netzob
|
||
|
|
|
||
|
|
[report]
|
||
|
|
ignore_errors = True
|
||
|
|
|
||
|
|
[html]
|
||
|
|
directory = coverage_html
|