mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
don't need to rerun checks each time buildhash changes
This commit is contained in:
parent
e9773fb461
commit
844e90fc80
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue