We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff2a732 + d05037e commit d5cacbfCopy full SHA for d5cacbf
tasks.py
@@ -64,7 +64,7 @@ def mypy(context):
64
def mypy_clean(context):
65
"Remove mypy cache directory"
66
#pylint: disable=unused-argument
67
- dirs = ['.mypy_cache']
+ dirs = ['.mypy_cache', 'dmypy.json', 'dmypy.sock']
68
rmrf(dirs)
69
namespace_clean.add_task(mypy_clean, 'mypy')
70
@@ -195,4 +195,3 @@ def pypi_test(context):
195
"Build and upload a distribution to https://test.pypi.org"
196
context.run('twine upload --repository-url https://test.pypi.org/legacy/ dist/*')
197
namespace.add_task(pypi_test)
198
-
0 commit comments