1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 23:08:14 +00:00

make: add black and isort to style target

This commit is contained in:
Jan Pochyla 2018-07-03 16:11:47 +02:00
parent d49e594ce0
commit 3997eb0e80

View File

@ -71,12 +71,12 @@ test_emu: ## run selected device tests from python-trezor
cd tests ; ./run_tests_device_emu.sh $(TESTOPTS)
pylint: ## run pylint on application sources and tests
pylint -E $(shell find src -name *.py)
pylint -E $(shell find tests -name *.py)
pylint -E $(shell find src tests -name *.py)
style: ## run code style check on application sources and tests
flake8 $(shell find src -name *.py)
flake8 $(shell find tests -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/*')
isort:
isort $(shell find src -name *.py ! -path 'src/trezor/messages/*')