summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-07-05 11:28:40 -0600
committerkotfu <kotfu@kotfu.net>2018-07-05 11:28:40 -0600
commit9a6a2b2c25c19e82c661c7ca602f528312e89a62 (patch)
treee0e330ccfd1e263c69406c6747da1e3bd1568258 /tasks.py
parent985e790c594a2c48804ffa201f9253eb32a59c8b (diff)
parentd80d672f47c3141bf4dfd7fc31818aa36d65a832 (diff)
downloadcmd2-git-9a6a2b2c25c19e82c661c7ca602f528312e89a62.tar.gz
Merge branch 'master' into plugin_functions
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py3
1 files changed, 1 insertions, 2 deletions
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)
-