1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

build: make sure resources are built for 'make mypy'

This commit is contained in:
matejcik 2020-01-28 16:42:24 +01:00
parent 04fe99af8e
commit 5d052678a6
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ pystyle_check: ## run code style check on application sources and tests
flake8 --version
isort --version | awk '/VERSION/{print $$2}'
black --version
mypy --version
@echo [MYPY]
@make -C core mypy
@echo [FLAKE8]

View File

@ -101,7 +101,7 @@ test_emu_ui_record: ## record and hash screens for ui integration tests
pylint: ## run pylint on application sources and tests
pylint -E $(shell find src tests -name *.py)
mypy:
mypy: res
mypy --config-file ../setup.cfg \
src/main.py