-
Notifications
You must be signed in to change notification settings - Fork 172
/
Makefile
94 lines (74 loc) · 2.26 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.PHONY: version
version: ## Bump version and push to release branch.
@poetry version $(v)
@git add pyproject.toml
@git commit -m "Version bump v$$(poetry version -s)"
@git push origin release/v$$(poetry version -s)
.PHONY: publish
publish: ## Push git tag and publish version to PyPI.
@git tag $$(poetry version -s)
@git push --tags
@poetry build
@poetry publish
.PHONY: install
install: ## Install all dependencies.
@make install/all
.PHONY: install/core
install/core: ## Install core dependencies.
@poetry install
.PHONY: install/all
install/all: ## Install all dependencies.
@poetry install --with dev --with test --with docs --all-extras
@poetry run pre-commit install
.PHONY: install/dev
install/dev: ## Install dev dependencies.
@poetry install --with dev
.PHONY: install/test
install/test: ## Install test dependencies.
@poetry install --with test
.PHONY: test ## Run all tests.
test: test/unit test/integration
.PHONY: test/unit
test/unit: ## Run unit tests.
@poetry run pytest -n auto tests/unit
.PHONY: test/unit/%
test/unit/%: ## Run specific unit tests.
@poetry run pytest -n auto tests/unit -k $*
.PHONY: test/unit/coverage
test/unit/coverage:
@poetry run pytest -n auto --cov=griptape tests/unit
.PHONY: test/integration
test/integration:
@poetry run pytest -n auto tests/integration/test_code_blocks.py
.PHONY: lint
lint: ## Lint project.
@poetry run ruff check --fix
.PHONY: format
format: ## Format project.
@poetry run ruff format
@poetry run mdformat .
.PHONY: check
check: check/format check/lint check/types check/spell ## Run all checks.
.PHONY: check/format
check/format:
@poetry run ruff format --check
.PHONY: check/lint
check/lint:
@poetry run ruff check
.PHONY: check/types
check/types:
@poetry run pyright griptape $(shell find docs -type f -path "*/src/*")
.PHONY: check/spell
check/spell:
@poetry run typos
.PHONY: docs
docs: ## Build documentation.
@poetry run python -m mkdocs build --clean --strict
.DEFAULT_GOAL := help
.PHONY: help
help: ## Print Makefile help text.
@# Matches targets with a comment in the format <target>: ## <comment>
@# then formats help output using these values.
@grep -E '^[a-zA-Z_\/-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| awk 'BEGIN {FS = ":.*?## "}; \
{printf "\033[36m%-12s\033[0m%s\n", $$1, $$2}'