-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
49 lines (40 loc) · 835 Bytes
/
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
VIRTUAL_ENV ?= .venv
# =============
# Development
# =============
$(VIRTUAL_ENV): poetry.lock .pre-commit-config.yaml
@poetry install --with dev
@poetry run pre-commit install
@touch $(VIRTUAL_ENV)
.PHONY: test
# target: test - Runs tests
t test: $(VIRTUAL_ENV)
@poetry run pytest tests.py
.PHONY: mypy
# target: mypy - Code checking
mypy: $(VIRTUAL_ENV)
@poetry run mypy
# ==============
# Bump version
# ==============
.PHONY: release
VPART?=minor
# target: release - Bump version
release:
git checkout develop
git pull
git checkout master
git pull
git merge develop
$(VIRTUAL_ENV)/bin/bump2version $(VPART)
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