1
0
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:
Tomas Susanka 2019-01-17 14:46:21 +01:00 committed by matejcik
parent d09f4470d2
commit d668954a3b
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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