compose/script/clean
Daniel Nephin 1d3aeaaae7 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>
2015-12-10 15:29:36 -08:00

8 lines
172 B
Bash
Executable File

#!/bin/sh
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