Ignore extra coverge files

These files are created because we run acceptance tests in a subprocess.
They have the process id in their name, so they wont be removed by the
normal coverage cleanup on each run.

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2015-12-09 16:03:26 -08:00
parent bc09698897
commit 1d3aeaaae7
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

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

View File

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