summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-21 10:22:51 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-11-21 10:22:51 -0500
commiteaf4a2be6de1a063e6c89daedee5f77177729da9 (patch)
tree9d1e6934fae918f69fa03cabd1e09b7d6498af04
parent39a2b1b171d7571a8ac87bbcf220d29ea5548018 (diff)
downloadpython-coveragepy-git-eaf4a2be6de1a063e6c89daedee5f77177729da9.tar.gz
build: i ran mypy, so deal with .mypy_cache
-rw-r--r--.treerc1
-rw-r--r--Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/.treerc b/.treerc
index a2188587..74a2a395 100644
--- a/.treerc
+++ b/.treerc
@@ -14,3 +14,4 @@ ignore =
*.gz *.zip
_build _spell
*.egg *.egg-info
+ .mypy_cache
diff --git a/Makefile b/Makefile
index 0032a3dd..541aeeca 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ clean: clean_platform ## Remove artifacts of test execution, i
@rm -f tests/covmain.zip tests/zipmods.zip tests/zip1.zip
@rm -rf doc/_build doc/_spell doc/sample_html_beta
@rm -rf tmp
- @rm -rf .cache .pytest_cache .hypothesis
+ @rm -rf .cache .hypothesis .mypy_cache .pytest_cache
@rm -rf tests/actual
@-make -C tests/gold/html clean