[build] Remove .mypy_cache with clean.all Makefile target

This commit is contained in:
Davis Schirmer
2021-11-05 01:39:24 -04:00
parent bc90ca7188
commit daee7578ed

View File

@@ -67,4 +67,9 @@ clean:
rm -rf dist *.egg-info
clean.all: clean
find . -type d -name __pycache__ -o -name .pytest_cache -exec rm -r "{}" +
find . \
-type d \
-name __pycache__ \
-o -name .pytest_cache \
-o -name .mypy_cache \
-exec rm -r "{}" +