don't need to rerun checks each time buildhash changes

This commit is contained in:
Damien Elmes 2020-01-06 19:30:54 +10:00
parent e9773fb461
commit 844e90fc80
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ clean:
# Checking python # Checking python
###################### ######################
CHECKDEPS := $(shell find anki tests -name '*.py') CHECKDEPS := $(shell find anki tests -name '*.py' | grep -v buildinfo.py)
.build/mypy: $(CHECKDEPS) .build/mypy: $(CHECKDEPS)
mypy anki mypy anki

View file

@ -67,7 +67,7 @@ JSDEPS := $(patsubst ts/src/%.ts, web/%.js, $(TSDEPS))
PYLIB := ../pylib PYLIB := ../pylib
CHECKDEPS := $(shell find aqt tests -name '*.py') CHECKDEPS := $(shell find aqt tests -name '*.py' | grep -v buildinfo.py)
.build/mypy: $(CHECKDEPS) .build/qt-stubs .build/mypy: $(CHECKDEPS) .build/qt-stubs
MYPYPATH=$(PYLIB) mypy aqt MYPYPATH=$(PYLIB) mypy aqt