-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathMakefile
77 lines (63 loc) · 1.51 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
all: $(VIRTUAL_ENV)
.PHONY: help
# target: help - Display callable targets
help:
@egrep "^# target:" [Mm]akefile
.PHONY: clean
# target: clean - Display callable targets
clean:
rm -rf build/ dist/ docs/_build *.egg-info
find $(CURDIR) -name "*.py[co]" -delete
find $(CURDIR) -name "*.orig" -delete
find $(CURDIR)/$(MODULE) -name "__pycache__" | xargs rm -rf
# =============
# Development
# =============
VIRTUAL_ENV ?= .venv
$(VIRTUAL_ENV): pyproject.toml
@poetry install --with dev,example
@poetry self add poetry-bumpversion
@poetry run pre-commit install
@touch $(VIRTUAL_ENV)
.PHONY: t test
# target: test - Runs tests
t test: $(VIRTUAL_ENV)
@poetry run pytest -xsv --mypy tests
.PHONY: mypy
mypy:
@poetry run mypy aioauth_client
OPEN := $(shell command -v open 2> /dev/null)
open:
sleep 1
ifdef OPEN
open http://localhost:8080
endif
server: $(VIRTUAL_ENV)
@poetry run uvicorn --reload --port 8080 example.app:app
.PHONY: example
example:
make -j server open
# ==============
# Bump version
# ==============
.PHONY: release
VERSION?=minor
# target: release - Bump version
release: $(VIRTUAL_ENV)
@$(eval VFROM := $(shell poetry version -s))
@poetry version $(VERSION)
@git commit -am "Bump version $(VFROM) → `poetry version -s`"
@git tag `poetry version -s`
@git checkout master
@git merge develop
@git checkout develop
@git push origin develop master
@git push --tags
.PHONY: minor
minor: release
.PHONY: patch
patch:
make release VERSION=patch
.PHONY: major
major:
make release VERSION=major