-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
90 lines (67 loc) · 2.02 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
# ============
# 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)
# Setup Python virtualenv
setup-virtualenv:
@test -e $(python) || python3 -m venv --system-site-packages $(venvpath)
# -------
# Testing
# -------
# Run the main test suite
test:
@test -e $(pytest) || $(MAKE) install-tests
@$(pytest) tests -m 'not slow'
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 saraswati --cov-branch \
--cov-report term-missing \
--cov-report html:.pytest_results/htmlcov \
--cov-report xml:.pytest_results/coverage.xml
# -------
# Release
# -------
# Release this piece of software
# Synopsis:
# make release bump=minor (major,minor,patch)
release: bumpversion push sdist 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
sdist:
@$(python) setup.py sdist
pypi-upload: install-releasetools
@$(twine) upload --skip-existing dist/*.tar.gz
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