-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (31 loc) · 611 Bytes
/
Makefile
File metadata and controls
40 lines (31 loc) · 611 Bytes
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
.PHONY: docs
export PIPENV_VERBOSITY=-1
update: pipenv-update
docs:
pipenv run $(MAKE) -C docs html
coverage:
pipenv run coverage run -m pytest
pipenv run coverage html
open htmlcov/index.html
echo "Press ENTER to continue..."
read
rm -rf htmlcov
rm .coverage
test:
pipenv run pytest
pipenv-init:
pipenv install --dev
pipenv-update:
pipenv run pip install -U \
pip \
setuptools \
wheel
while true; do \
pipenv update && break ; \
done
pipenv install --dev
pipenv clean
pipenv-deinit:
pipenv --rm
manpage:
pipenv run rst2man.py share/f2format.rst > share/f2format.1