mirror of
https://github.com/docker/compose.git
synced 2025-05-14 03:20:11 +02:00
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>
8 lines
172 B
Bash
Executable File
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
|