forked from grafana-toolbox/grafana-wtf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
114 lines (82 loc) · 2.35 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# ============
# Main targets
# ============
# -------------
# Configuration
# -------------
$(eval venvpath := .venv)
$(eval pip := $(venvpath)/bin/pip)
$(eval python := $(venvpath)/bin/python)
$(eval pytest := $(venvpath)/bin/pytest)
$(eval bumpversion := $(venvpath)/bin/bumpversion)
$(eval twine := $(venvpath)/bin/twine)
$(eval sphinx := $(venvpath)/bin/sphinx-build)
$(eval black := $(venvpath)/bin/black)
$(eval isort := $(venvpath)/bin/isort)
# Setup Python virtualenv
setup-virtualenv:
@test -e $(python) || python3 -m venv $(venvpath)
# -------
# Testing
# -------
# Run the main test suite
test:
@test -e $(pytest) || $(MAKE) install-tests
@$(pytest) --keepalive --show-capture=all -vvv tests
test-teardown:
docker rm grafana-wtf-test --force
test-refresh: install-tests test
test-junit: install-tests
@$(pytest) tests --junit-xml .pytest_results/pytest.xml
test-coverage: install-tests
@$(pytest) tests \
--junit-xml .pytest_results/pytest.xml \
--cov mqttwarn --cov-branch \
--cov-report term-missing \
--cov-report html:.pytest_results/htmlcov \
--cov-report xml:.pytest_results/coverage.xml
# ----------
# Formatting
# ----------
format: install-releasetools
$(isort) .
$(black) .
# -------
# Release
# -------
# Release this piece of software
# Synopsis:
# make release bump=minor (major,minor,patch)
release: bumpversion push build pypi-upload
# -------------
# Documentation
# -------------
# Build the documentation
docs-html: install-doctools
touch doc/index.rst
export SPHINXBUILD="`pwd`/$(sphinx)"; cd doc; make html
# ===============
# Utility targets
# ===============
bumpversion: install-releasetools
@$(bumpversion) $(bump)
push:
git push && git push --tags
build:
@$(python) -m build
pypi-upload: install-releasetools
twine upload --skip-existing --verbose dist/{*.tar.gz,*.whl}
install-doctools: setup-virtualenv
@$(pip) install --quiet --requirement requirements-docs.txt --upgrade
install-releasetools: setup-virtualenv
@$(pip) install --quiet --requirement requirements-release.txt --upgrade
install-tests: setup-virtualenv
@$(pip) install --quiet --editable .[test] --upgrade
@$(python) setup.py --quiet develop
@touch $(venvpath)/bin/activate
@mkdir -p .pytest_results
# -------
# Project
# -------
grafana-start:
cd tests/grafana; docker-compose up