# Test coverage configuration.
# Usage:
#   pip install coverage
#   coverage erase  # clears previous data if any
#   coverage run -m unittest discover
#   coverage report  # prints to stdout
#   coverage html  # creates ./htmlcov/*.html including annotated source
[run]
branch = true
source = deezer
omit = 
    ENV/*
    deezer/tests/*

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