From b41982d3aded8b3c09ba2decf985fbdc54a954e9 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Mon, 25 Jun 2018 22:29:29 -0700 Subject: "invoke clean" will now also cleanup mypy daemon artifacts --- tasks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tasks.py') diff --git a/tasks.py b/tasks.py index ac525517..183a033d 100644 --- a/tasks.py +++ b/tasks.py @@ -64,7 +64,7 @@ namespace.add_task(mypy) def mypy_clean(context): "Remove mypy cache directory" #pylint: disable=unused-argument - dirs = ['.mypy_cache'] + dirs = ['.mypy_cache', 'dmypy.json', 'dmypy.sock'] rmrf(dirs) namespace_clean.add_task(mypy_clean, 'mypy') @@ -195,4 +195,3 @@ def pypi_test(context): "Build and upload a distribution to https://test.pypi.org" context.run('twine upload --repository-url https://test.pypi.org/legacy/ dist/*') namespace.add_task(pypi_test) - -- cgit v1.2.1