-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
56 lines (41 loc) · 1.12 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
VIRTUAL_ENV ?= env
all: $(VIRTUAL_ENV)
$(VIRTUAL_ENV): pyproject.toml .pre-commit-config.yaml
@[ -d $(VIRTUAL_ENV) ] || python -m venv $(VIRTUAL_ENV)
@$(VIRTUAL_ENV)/bin/pip install -e .[tests,dev]
@$(VIRTUAL_ENV)/bin/pre-commit install
@touch $(VIRTUAL_ENV)
VERSION ?= minor
.PHONY: version
version: $(VIRTUAL_ENV)
git checkout develop
git pull
git checkout master
git pull
git merge develop
$(VIRTUAL_ENV)/bin/bump2version $(VERSION)
git checkout develop
git merge master
git push --tags origin develop master
.PHONY: minor
minor:
make version VERSION=minor
.PHONY: patch
patch:
make version VERSION=patch
.PHONY: major
major:
make version VERSION=major
.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
test t: $(VIRTUAL_ENV)
$(VIRTUAL_ENV)/bin/pytest tests.py
mypy: $(VIRTUAL_ENV)
$(VIRTUAL_ENV)/bin/mypy asgi_prometheus
example: $(VIRTUAL_ENV)
$(VIRTUAL_ENV)/bin/uvicorn --reload --port 5000 example:app