Merge pull request #2526 from dnephin/remove_extra_coverage_files

Ignore extra coverage files
This commit is contained in:
Aanand Prasad 2015-12-16 15:18:10 +00:00
commit ae7e48ea2f
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
*.egg-info
*.pyc
/.coverage
.coverage*
/.tox
/build
/coverage-html

View File

@ -2,5 +2,6 @@
set -e
find . -type f -name '*.pyc' -delete
find . -name .coverage.* -delete
find -name __pycache__ -delete
rm -rf docs/_site build dist docker-compose.egg-info