-
Notifications
You must be signed in to change notification settings - Fork 0
/
targets.mk
178 lines (151 loc) · 5.7 KB
/
targets.mk
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
.DELETE_ON_ERROR:
.SHELLFLAGS := -eu -o pipefail -c
.SUFFIXES:
MAKEFLAGS += --warn-undefined-variables
SHELL := /bin/bash
CRUFT = $(PYTHON) -m cruft
DOCS_SOURCE := ./docs/source
DOCS_BUILD_DIR := ./docs/build
PIP = $(PYTHON) -m pip
PIP_COMPILE = $(PYTHON) -m piptools compile --allow-unsafe --no-emit-index-url -q --no-emit-trusted-host
PIP_SYNC = $(PYTHON) -m piptools sync
PYTHON = $(SOURCE_VENV) python
PYTHON_VERSION := 3.8
SOURCE_VENV = source $(VENV_ACTIVATE);
SPHINX_APIDOC = $(SOURCE_VENV) sphinx-apidoc
SPHINX_BUILD = $(SOURCE_VENV) sphinx-build
TOX = $(SOURCE_VENV) tox
VENV := .venv
VENV_ACTIVATE = $(VENV)/bin/activate
define sync_dev_requirements
$(PIP_SYNC) requirements-dev.txt
endef
define runtests
$(TOX) -e $(1) -- \
-vv \
--cov=src/eris \
--cov-config=setup.cfg \
--cov-fail-under=80 \
--cov-report=xml:coverage.xml \
--cov-report=term-missing \
--cov-branch \
--doctest-modules \
--doctest-report ndiff \
# Don't remove this comment!
endef
.PHONY: all
all: ## Build the package, build the docs, run all tests, and run all linters.
all: build build-docs lint test
.PHONY: lint
lint: black isort pydocstyle flake8 mypy pylint quick-lints ## Run all linting checks.
.PHONY: quick-lints
quick-lints: sync-dev-requirements ## Run miscellaneous linting tasks.
$(SOURCE_VENV) ./bin/quick-lints
.PHONY: black
black: sync-dev-requirements ## Run black checks.
$(PYTHON) -m black --diff --check -q --color src
$(PYTHON) -m black --diff --check -q --color tests
.PHONY: isort
isort: sync-dev-requirements ## Run isort checks.
$(PYTHON) -m isort --check-only src
$(PYTHON) -m isort --check-only tests
.PHONY: pydocstyle
pydocstyle: sync-dev-requirements ## Run pydocstyle checks.
$(PYTHON) -m pydocstyle src
$(PYTHON) -m pydocstyle tests
.PHONY: flake8
flake8: sync-dev-requirements ## Run flake8 checks.
$(PYTHON) -m flake8 src
$(PYTHON) -m flake8 tests
.PHONY: mypy
mypy: sync-dev-requirements ## Run mypy checks.
$(PYTHON) -m mypy src
$(PYTHON) -m mypy tests
.PHONY: pylint
pylint: sync-dev-requirements ## Run pylint checks.
$(PYTHON) -m pylint src
$(PYTHON) -m pylint tests
.PHONY: test
test: sync-dev-requirements ## Run this project's test suite.
$(call runtests,ALL)
### Test a single python version.
#
# Examples:
# // run tests on python3.8 _only_
# make test-py38
test-%: sync-dev-requirements
$(call runtests,$*)
.PHONY: build
build: sync-dev-requirements
build: ## Build python package using setuptools.
$(PYTHON) setup.py build
$(PYTHON) setup.py sdist
$(PYTHON) setup.py bdist_wheel
.PHONY: build-docs
build-docs: sync-dev-requirements docs-clean
build-docs: ## Build this project's documentation using sphinx.
$(SPHINX_APIDOC) -f -M -e -o $(DOCS_SOURCE) src/eris
$(SPHINX_BUILD) $(DOCS_SOURCE) $(DOCS_BUILD_DIR)
.PHONY: docs-clean
docs-clean: sync-dev-requirements
$(SPHINX_BUILD) -M clean $(DOCS_SOURCE) $(DOCS_BUILD_DIR)
requirements%.txt: export CUSTOM_COMPILE_COMMAND="make update-requirements"
requirements%.txt: $(VENV_ACTIVATE)
$(PIP_COMPILE) --output-file=requirements-dev.txt requirements.in requirements-dev.in
$(PIP_COMPILE) --output-file=requirements.txt requirements.in
.PHONY: sync-dev-requirements
sync-dev-requirements: requirements-dev.txt
$(call sync_dev_requirements)
.PHONY: update-requirements
update-requirements: export CUSTOM_COMPILE_COMMAND="make update-requirements"
update-requirements: $(VENV_ACTIVATE)
update-requirements: ## Update all requirements to latest versions.
$(PIP_COMPILE) --upgrade --output-file=requirements-dev.txt requirements.in requirements-dev.in
$(PIP_COMPILE) --upgrade --output-file=requirements.txt requirements.in
$(call sync_dev_requirements)
.PHONY: check-requirements
check-requirements: export CUSTOM_COMPILE_COMMAND="make update-requirements"
check-requirements: sync-dev-requirements
check-requirements: ## Check if requirements*.txt files are up-to-date.
@echo "Checking requirements..."
$(eval REQ_TEMPDIR := $(shell mktemp -d))
$(PIP_COMPILE) --output-file=$(REQ_TEMPDIR)/requirements-dev.txt requirements.in requirements-dev.in
$(PIP_COMPILE) --output-file=$(REQ_TEMPDIR)/requirements.txt requirements.in
@diff requirements-dev.txt $(REQ_TEMPDIR)/requirements-dev.txt && \
diff requirements.txt $(REQ_TEMPDIR)/requirements.txt || \
{ echo "Requirements are not up-to-date: run 'make update-requirements' to fix them."; \
echo "Expected requirements.txt:"; cat $(REQ_TEMPDIR)/requirements.txt; \
echo "Expected requirements-dev.txt:"; cat $(REQ_TEMPDIR)/requirements-dev.txt; \
exit 1; }
### Bootstraps virtual environment for first use.
$(VENV_ACTIVATE):
python3 -m pip install --user virtualenv
python3 -m virtualenv --python /pyenv/shims/python$(PYTHON_VERSION) $(VENV)
$(PIP) install -U pip pip-tools
.PHONY: check-cc
check-cc: sync-dev-requirements ## Check if this project needs to be synced with the cookiecutter that generated it.
$(SOURCE_VENV) ./bin/check_cc
.PHONY: update-cc
update-cc: sync-dev-requirements
update-cc: ## Update the project to the latest version of the cookiecutter
$(CRUFT) update --not-strict -c master
.PHONY: update-snapshots
update-snapshots: ## Update pytest snapshots
update-snapshots: sync-dev-requirements
$(PYTHON) -m pytest -v --snapshot-update src tests
.PHONY: dev-shell
dev-shell: sync-dev-requirements ## Launch a bash shell with the python environment for this project. If docker is enabled, this launches a shell inside the container.
($(SOURCE_VENV) bash)
.PHONY: clean
clean: ## Remove build artifacts.
$(RM) -r build/*
$(RM) MANIFEST
$(RM) -r dist/*
$(RM) -r .pytest_cache
$(RM) -r .coverage
$(RM) -r .mypy_cache
$(RM) -r $(package).egg-info
$(RM) -r $(VENV)
$(RM) -r .tox
find . -type d -name '__pycache__' -exec rm -rf {} +
find . -type f -name '*.pyc' -exec rm -rf {} +