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>
7 lines
172 B
Bash
Executable file
7 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
|