forked from scikit-hep/probfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
76 lines (65 loc) · 2.54 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
# Makefile with some convenient quick ways to do common things
PROJECT = probfit
CYTHON ?= cython
help:
@echo ''
@echo ' probfit available make targets:'
@echo ''
@echo ' help Print this help message (the default)'
@echo ''
@echo ' clean Remove generated files'
@echo ' build Build inplace'
@echo ' test Run tests'
@echo ' coverage Run tests and write coverage report'
@echo ' cython Compile cython files'
@echo ' doc Run Sphinx to generate HTML docs'
@echo ' doc-show Open local HTML docs in browser'
@echo ''
@echo ' code-analysis Run code analysis (flake8 and pylint)'
@echo ' flake8 Run code analysis (flake8)'
@echo ' pylint Run code analysis (pylint)'
@echo ''
@echo ' Note that most things are done via `python setup.py`, we only use'
@echo ' make for things that are not trivial to execute via `setup.py`.'
@echo ''
@echo ' Common `setup.py` commands:'
@echo ''
@echo ' python setup.py --help-commands'
@echo ' python setup.py install'
@echo ' python setup.py develop'
@echo ' python setup.py test -V'
@echo ' python setup.py test --help # to see available options'
@echo ' python setup.py build_sphinx # use `-l` for clean build'
@echo ''
@echo ' More info:'
@echo ''
@echo ' * probfit code: https://github.com/iminuit/probfit'
@echo ' * probfit docs: https://probfit.readthedocs.io'
@echo ''
clean:
rm -rf build htmlcov doc/_build
find . -name "*.pyc" -exec rm {} \;
find . -name "*.so" -exec rm {} \;
find . -name __pycache__ | xargs rm -fr
build:
python setup.py build_ext --inplace
test: build
python -m pytest -v $(PROJECT)
coverage: build
python -m pytest -v $(PROJECT) --cov $(PROJECT) --cov-report html --cov-report term-missing --cov-report xml
cython:
cython -a --line-directives --fast-fail probfit/_libstat.pyx;
cython -a --line-directives --fast-fail probfit/costfunc.pyx;
cython -a --line-directives --fast-fail probfit/funcutil.pyx;
cython -a --line-directives --fast-fail probfit/pdf.pyx;
cython -a --line-directives --fast-fail probfit/functor.pyx;
doc-show:
open doc/_build/html/index.html
code-analysis: flake8 pylint
flake8:
flake8 --max-line-length=90 $(PROJECT) | grep -v __init__ | grep -v external
# TODO: once the errors are fixed, remove the -E option and tackle the warnings
pylint:
pylint -E $(PROJECT)/ -d E1103,E0611,E1101 \
--ignore="" -f colorized \
--msg-template='{C}: {path}:{line}:{column}: {msg} ({symbol})'