From da10d47d64566edb05b03591665f34d857b80ea7 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 15 Nov 2018 06:55:12 +0000 Subject: [PATCH] Clean target --- implementations/python/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/implementations/python/Makefile b/implementations/python/Makefile index cf6523a..f0d4c6d 100644 --- a/implementations/python/Makefile +++ b/implementations/python/Makefile @@ -6,3 +6,9 @@ coverage: python2-coverage run --branch -m unittest test_preserves python3-coverage run --branch -m unittest test_preserves python3-coverage html + +clean: + rm -rf htmlcov + rm -rf __pycache__ + rm -f *.pyc + rm -f .coverage