summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2012-03-05 22:44:39 -0500
committerMichael DeHaan <michael.dehaan@gmail.com>2012-03-05 22:44:39 -0500
commite835cd6f92ee4f17cd09705e25cc6d7a9fd4c0b9 (patch)
treeeeb25924037508a85ad27696f13395dd80a13050
parent001937976f408cfb8290d044be1571bc78628560 (diff)
downloadansible-e835cd6f92ee4f17cd09705e25cc6d7a9fd4c0b9.tar.gz
Have 'make clean' clean up test output directory
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f4ad315c57..fc9d73ba1a 100644
--- a/Makefile
+++ b/Makefile
@@ -42,6 +42,8 @@ clean:
find . -type f \( -name "*~" -or -name "#*" \) -delete
@echo "Cleaning up asciidoc to man transformations and results"
find ./docs/man -type f \( -name "*.xml" -or -regex ".*\.[0-9]$$" \) -delete
+ @echo "Cleaning up output from test runs"
+ -rm -rf test/test_data
python: docs
python setup.py build