-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
133 lines (100 loc) · 3.03 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# ============
# 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/bump2version)
$(eval twine := $(venvpath)/bin/twine)
$(eval sphinx := $(venvpath)/bin/sphinx-build)
$(eval isort := $(venvpath)/bin/isort)
$(eval black := $(venvpath)/bin/black)
$(eval gribmagic := $(venvpath)/bin/gribmagic)
# Setup Python virtualenv
setup-virtualenv:
@test -e $(python) || python3 -m venv --system-site-packages $(venvpath)
# -------
# Testing
# -------
# Run the main test suite
test: install-tests
@echo "==================="
@echo "Invoking test suite"
@echo "==================="
@$(pytest) -vvv tests ${ARGS}
test-parallel:
@$(MAKE) test ARGS=--numprocesses=auto
test-refresh: install-tests test
test-junit: install-tests
@$(pytest) tests --junit-xml .pytest_results/pytest.xml
test-coverage: install-tests
@echo "==================="
@echo "Invoking test suite"
@echo "==================="
@$(pytest) -vvv tests \
--cov=gribmagic --cov-branch \
--cov-report=term-missing \
--cov-report=html:.pytest_results/htmlcov \
--cov-report=xml:.pytest_results/coverage.xml \
--junit-xml=.pytest_results/pytest.xml \
${ARGS}
test-coverage-parallel:
@$(MAKE) test-coverage ARGS=--numprocesses=auto
# ----------------------
# Linting and Formatting
# ----------------------
format: install-releasetools
@echo "Running isort"
@$(isort) gribmagic tests
@echo "Running black"
@$(black) gribmagic tests
# -------
# 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-dev.txt --upgrade
install-tests: setup-virtualenv testdata-download testoutput-clean
@mkdir -p .pytest_results
@echo "========================================"
@echo "Installing/upgrading sandbox environment"
@echo "========================================"
@$(pip) install --quiet --editable=.[test,plotting] --upgrade
@$(MAKE) magics-info
@echo
@echo "=============================="
@echo "Installing DWD GRIB Downloader"
@echo "=============================="
@$(gribmagic) install dwd-grib-downloader
@echo
# ==============
# Custom targets
# ==============
include gribmagic.mk