Skip to content

Commit

Permalink
Add mypy_clean
Browse files Browse the repository at this point in the history
  • Loading branch information
fornellas committed Apr 21, 2020
1 parent e04f65c commit f916c2d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ mypy:
@printf "${TERM_BRIGHT}MYPY ${ALL_SRCS}\n${TERM_NONE}"
${Q} mypy ${ALL_SRCS}

.PHONY: mypy_clean
mypy_clean:
@printf "${TERM_BRIGHT}MYPY CLEAN\n${TERM_NONE}"
${Q} rm -rf .mypy_cache/

.PHONY: flake8
flake8:
@printf "${TERM_BRIGHT}FLAKE8 ${ALL_SRCS}\n${TERM_NONE}"
Expand Down Expand Up @@ -181,6 +186,6 @@ travis: \
##

.PHONY: clean
clean: sdist_clean docs_clean coverage_html_clean coverage_erase
clean: sdist_clean docs_clean coverage_html_clean coverage_erase mypy_clean
@printf "${TERM_BRIGHT}CLEAN\n${TERM_NONE}"
${Q} rm -rf */__pycache__/ */*.pyc

0 comments on commit f916c2d

Please sign in to comment.