-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
79 lines (66 loc) · 1.67 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
PACKAGE = muffin_rest
VIRTUAL_ENV ?= .venv
# =============
# Development
# =============
$(VIRTUAL_ENV): poetry.lock .pre-commit-config.yaml
@[ -d $(VIRTUAL_ENV) ] || python -m venv $(VIRTUAL_ENV)
@poetry install --with tests,dev,example --extras yaml
@poetry self add poetry-bumpversion
@poetry run pre-commit install
@touch $(VIRTUAL_ENV)
.PHONY: t test
# target: test - Runs tests
t test: $(VIRTUAL_ENV)
docker start mongo
@echo 'Run tests...'
@poetry run pytest tests
docker stop mongo
.PHONY: mypy
# target: mypy - Check typing
mypy: $(VIRTUAL_ENV)
@echo 'Checking typing...'
@poetry run mypy
.PHONY: lint
# target: lint - Check code
lint: $(VIRTUAL_ENV)
@poetry run mypy
@poetry run ruff $(PACKAGE)
.PHONY: example-peewee example-pw example
# target: example-peewee - Run example
example-peewee example-pw example: $(VIRTUAL_ENV)
@echo 'Run example...'
@poetry run uvicorn examples.peewee_orm:app --reload --port=5000
.PHONY: example-sqlalchemy
# target: example-sqlalchemy - Run example
example-sqlalchemy: $(VIRTUAL_ENV)
@echo 'Run example...'
@poetry run uvicorn examples.sqlalchemy_core:app --reload --port=5000
# ==============
# Bump version
# ==============
.PHONY: release
VPART?=minor
# target: release - Bump version
release: $(VIRTUAL_ENV)
git checkout develop
git pull
git checkout master
git merge develop
git pull
@poetry version $(VPART)
git commit -am "build(release): `poetry version -s`"
git tag `poetry version -s`
git checkout develop
git merge master
git push --tags origin develop master
.PHONY: minor
minor: release
.PHONY: patch
patch:
make release VPART=patch
.PHONY: major
major:
make release VPART=major
version v:
@poetry version -s