mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-03 12:00:59 +00:00
Makefile: typo
This commit is contained in:
parent
d09f4470d2
commit
d668954a3b
@ -45,7 +45,7 @@ before_script:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
- python setup.py install
|
- python setup.py install
|
||||||
- if [ $TRAVIS_PYTHON_VERSION != 3.5 ]; then make stylecheck; fi
|
- if [ $TRAVIS_PYTHON_VERSION != 3.5 ]; then make style_check; fi
|
||||||
- tox
|
- tox
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
|
4
Makefile
4
Makefile
@ -46,9 +46,9 @@ style:
|
|||||||
isort --apply --recursive $(STYLE_TARGETS) --skip-glob "*/$(EXCLUDE_TARGETS)/*"
|
isort --apply --recursive $(STYLE_TARGETS) --skip-glob "*/$(EXCLUDE_TARGETS)/*"
|
||||||
autoflake -i --remove-all-unused-imports -r $(STYLE_TARGETS) --exclude "$(EXCLUDE_TARGETS)"
|
autoflake -i --remove-all-unused-imports -r $(STYLE_TARGETS) --exclude "$(EXCLUDE_TARGETS)"
|
||||||
|
|
||||||
stylecheck:
|
style_check:
|
||||||
black --check $(STYLE_TARGETS)
|
black --check $(STYLE_TARGETS)
|
||||||
isort --diff --check-only --recursive $(STYLE_TARGETS) --skip-glob "*/$(EXCLUDE_TARGETS)/*"
|
isort --diff --check-only --recursive $(STYLE_TARGETS) --skip-glob "*/$(EXCLUDE_TARGETS)/*"
|
||||||
flake8
|
flake8
|
||||||
|
|
||||||
.PHONY: all build install clean style stylecheck git-clean clean-build clean-pyc clean-test
|
.PHONY: all build install clean style style_check git-clean clean-build clean-pyc clean-test
|
||||||
|
Loading…
Reference in New Issue
Block a user