aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2021-03-14 12:14:28 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2021-03-14 12:14:28 +0100
commitffc2f34851895d8eed3f9d93716d41527dc6810b (patch)
treec45d70d36640a3057b71a75b8c4c693393d17a8f
parent7f1588ee3fb82bf2d5808bd304fdb28b80f6d11c (diff)
downloadallocbench-ffc2f34851895d8eed3f9d93716d41527dc6810b.tar.gz
allocbench-ffc2f34851895d8eed3f9d93716d41527dc6810b.zip
[Make] exclude .mypy_cache from ctag generation
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d5c3706..7a5d4b5 100644
--- a/Makefile
+++ b/Makefile
@@ -64,7 +64,7 @@ check-mypy:
mypy --ignore-missing-imports $(PYTHONFILES)
tags:
- ctags -R --exclude="build/*" --exclude="cache/*" --exclude="doc/*" --exclude="results/*"
+ ctags -R --exclude="build/*" --exclude="cache/*" --exclude="doc/*" --exclude="results/*" --exclude=".mypy_cache/*"
integration-test:
python3 -m unittest discover -s tests/integration