2018-08-21 14:21:49 +00:00
|
|
|
PYTHON=python3
|
|
|
|
SETUP=$(PYTHON) setup.py
|
|
|
|
|
|
|
|
EXCLUDES=.vscode
|
2019-08-06 14:26:23 +00:00
|
|
|
STYLE_TARGETS=src/trezorlib setup.py
|
2019-05-07 14:17:53 +00:00
|
|
|
EXCLUDE_TARGETS=messages
|
2018-08-21 14:21:49 +00:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
build:
|
|
|
|
$(SETUP) build
|
|
|
|
|
|
|
|
install:
|
|
|
|
$(SETUP) install
|
|
|
|
|
2020-08-05 14:39:19 +00:00
|
|
|
dist: doc clean
|
2018-12-06 15:40:55 +00:00
|
|
|
$(SETUP) sdist
|
|
|
|
$(SETUP) bdist_wheel
|
|
|
|
|
2019-11-15 12:26:24 +00:00
|
|
|
doc:
|
|
|
|
$(PYTHON) helper-scripts/make-options-rst.py
|
|
|
|
|
2019-05-14 14:22:23 +00:00
|
|
|
clean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts
|
2018-12-28 11:57:05 +00:00
|
|
|
|
|
|
|
clean-build: ## remove build artifacts
|
|
|
|
rm -fr build/
|
|
|
|
rm -fr dist/
|
|
|
|
rm -fr .eggs/
|
|
|
|
find . -name '*.egg-info' -exec rm -fr {} +
|
|
|
|
find . -name '*.egg' -exec rm -f {} +
|
|
|
|
|
|
|
|
clean-pyc: ## remove Python file artifacts
|
|
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
|
|
find . -name '*~' -exec rm -f {} +
|
|
|
|
find . -name '__pycache__' -exec rm -fr {} +
|
|
|
|
|
|
|
|
clean-test: ## remove test and coverage artifacts
|
|
|
|
rm -fr .tox/
|
|
|
|
rm -f .coverage
|
|
|
|
rm -fr htmlcov/
|
|
|
|
rm -fr .pytest_cache
|
|
|
|
|
|
|
|
git-clean:
|
2018-08-21 14:21:49 +00:00
|
|
|
git clean -dfx -e $(EXCLUDES)
|
|
|
|
|
|
|
|
style:
|
|
|
|
black $(STYLE_TARGETS)
|
2019-05-07 14:17:53 +00:00
|
|
|
isort --apply --recursive $(STYLE_TARGETS) --skip-glob "$(EXCLUDE_TARGETS)/*"
|
2018-09-03 13:38:50 +00:00
|
|
|
autoflake -i --remove-all-unused-imports -r $(STYLE_TARGETS) --exclude "$(EXCLUDE_TARGETS)"
|
2019-11-13 11:10:33 +00:00
|
|
|
flake8
|
2022-03-01 12:55:58 +00:00
|
|
|
make pyright
|
2018-08-21 14:21:49 +00:00
|
|
|
|
2019-01-17 13:46:21 +00:00
|
|
|
style_check:
|
2018-08-21 14:21:49 +00:00
|
|
|
black --check $(STYLE_TARGETS)
|
2019-05-07 14:17:53 +00:00
|
|
|
isort --check-only --recursive $(STYLE_TARGETS) --skip-glob "$(EXCLUDE_TARGETS)/*"
|
2018-08-21 14:21:49 +00:00
|
|
|
flake8
|
2022-03-01 12:55:58 +00:00
|
|
|
make pyright
|
2018-09-03 13:38:50 +00:00
|
|
|
|
2022-02-14 17:15:11 +00:00
|
|
|
style_quick_check:
|
|
|
|
black --check $(STYLE_TARGETS)
|
|
|
|
isort --check-only --recursive $(STYLE_TARGETS) --skip-glob "$(EXCLUDE_TARGETS)/*"
|
|
|
|
|
2019-05-14 14:22:23 +00:00
|
|
|
.PHONY: all build install clean style style_check git-clean clean-build clean-pyc clean-test
|
2021-11-26 13:18:30 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
pytest tests
|
|
|
|
|
|
|
|
pyright:
|
2022-03-17 10:53:37 +00:00
|
|
|
python ./../tools/pyright_tool.py
|