Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def mypy(context):
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')

Expand Down Expand Up @@ -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)