56bab01427
Coverage measurement will be helpful to gauge the effectiveness of tests and maintain the quality of the code. Also changing .gitignore to ignore the cover directory and .coverage directories. Change-Id: I184210af2d2e677b7cc2fe0c6561334ebc444fad
61 lines
599 B
Plaintext
61 lines
599 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
.eggs
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env/
|
|
bin/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
cover/
|
|
.coverage*
|
|
!.coveragerc
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
.testrepository/
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
|
|
# Rope
|
|
.ropeproject
|
|
|
|
# Django stuff:
|
|
*.log
|
|
*.pot
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
|