-
Notifications
You must be signed in to change notification settings - Fork 58
/
Makefile
81 lines (73 loc) · 2.29 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
.PHONY: help pypi pypi-test docs coverage test clean
help:
@echo "pypi - submit to PyPI server"
@echo "pypi-test - submit to TestPyPI server"
@echo "docs - generate Sphinx documentation"
@echo "coverage - check code coverage"
@echo "test - run unit tests"
@echo "clean - remove artifacts"
pypi:
python setup.py sdist bdist_wheel
twine upload dist/*
pypi-test:
python setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
docs:
rm -rf docs/api
rm -f docs/source/vip_hci.config.rst
rm -f docs/source/vip_hci.fits.rst
rm -f docs/source/vip_hci.fm.rst
rm -f docs/source/vip_hci.hci_dataset.rst
rm -f docs/source/vip_hci.hci_postproc.rst
rm -f docs/source/vip_hci.invprob.rst
rm -f docs/source/vip_hci.metrics.rst
rm -f docs/source/vip_hci.preproc.rst
rm -f docs/source/vip_hci.psfsub.rst
rm -f docs/source/vip_hci.rst
rm -f docs/source/vip_hci.stats.rst
rm -f docs/source/vip_hci.var.rst
rm -f docs/source/vip_hci.vip_ds9.rst
sphinx-apidoc -o docs/source vip_hci
cd docs/source/
$(MAKE) -C docs clean
$(MAKE) -C docs html
coverage:
coverage run --source=vip_hci -m pytest
coverage report -m
test:
pre-commit clean
pre-commit install --hook-type pre-merge-commit
pre-commit install --hook-type pre-push
pre-commit install --hook-type post-rewrite
pre-commit install-hooks
pre-commit install
pre-commit run --files vip_hci/config/*.py
pre-commit run --files vip_hci/fits/*.py
pre-commit run --files vip_hci/fm/*.py
pre-commit run --files vip_hci/greedy/*.py
pre-commit run --files vip_hci/invprob/*.py
pre-commit run --files vip_hci/metrics/*.py
pre-commit run --files vip_hci/preproc/*.py
pre-commit run --files vip_hci/psfsub/*.py
pre-commit run --files vip_hci/stats/*.py
pre-commit run --files vip_hci/var/*.py
pre-commit run --files vip_hci/objects/*.py
pytest --cov=vip_hci/ --cov-report=xml
rm confi_hist.pdf
rm confi_hist_gaussfit.pdf
rm confidence.txt
rm corner_plot.pdf
rm walk_plot.pdf
rm -rf results/
pep8-format:
autopep8 --in-place --aggressive vip_hci/*.py
autopep8 --in-place --aggressive vip_hci/*/*.py
autopep8 --in-place --aggressive tests/*.py
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
rm -rf build/
rm -rf dist/
rm -rf vip_hci.egg-info/
rm -rf .pytest_cache/
rm -f .coverage