From 99502e20eac3040c9e32feace4f766280f60af9f Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 18 Dec 2019 21:06:47 +1000 Subject: [PATCH] ignore buildhash when checking if tests need to be re-run --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 904a5b418..6fceaed12 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ check: mypy pytest pylint pytype checkpretty # Checking python ###################### -PYCHECKDEPS := $(BUILDDEPS) $(shell find anki aqt -name '*.py') +PYCHECKDEPS := $(BUILDDEPS) $(shell find anki aqt -name '*.py' | grep -v buildhash.py) .build/mypy: $(PYCHECKDEPS) mypy anki aqt