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

style: print versions to log

This commit is contained in:
Tomas Susanka 2019-03-15 14:40:48 +01:00
parent 05c055080a
commit f697751d53

View File

@ -74,6 +74,9 @@ pylint: ## run pylint on application sources and tests
## style commands:
style_check: ## run code style check on application sources and tests
flake8 --version
isort --version | grep "VERSION"
black --version
flake8 $(shell find src -name *.py)
isort --check-only $(shell find src -name *.py ! -path 'src/trezor/messages/*')
black --check $(shell find src -name *.py ! -path 'src/trezor/messages/*')