Skip to content

Commit

Permalink
Add the Makefile
Browse files Browse the repository at this point in the history
For continuous integration to run
  • Loading branch information
GaelVaroquaux committed Mar 23, 2014
1 parent d2f3cfa commit eb05783
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# simple makefile to simplify repetetive build env management tasks under posix

# caution: testing won't work on windows, see README

PYTHON ?= python
CYTHON ?= cython
NOSETESTS ?= nosetests
CTAGS ?= ctags

all: clean inplace test

clean-ctags:
rm -f tags

clean: clean-ctags
$(PYTHON) setup.py clean
rm -rf dist

in: inplace # just a shortcut
inplace:
$(PYTHON) setup.py build_ext -i

test-code: in
$(NOSETESTS) -s -v hmmlearn
test-doc:
$(NOSETESTS) -s -v doc/ doc/modules/ doc/datasets/ \
doc/developers doc/tutorial/basic doc/tutorial/statistical_inference \
doc/tutorial/text_analytics

test-coverage:
rm -rf coverage .coverage
$(NOSETESTS) -s -v --with-coverage hmmlearn

test: test-code test-doc

trailing-spaces:
find hmmlearn -name "*.py" | xargs perl -pi -e 's/[ \t]*$$//'

cython:
find hmmlearn -name "*.pyx" | xargs $(CYTHON)

ctags:
# make tags for symbol based navigation in emacs and vim
# Install with: sudo apt-get install exuberant-ctags
$(CTAGS) -R *

doc: inplace
$(MAKE) -C doc html

doc-noplot: inplace
$(MAKE) -C doc html-noplot

code-analysis:
flake8 hmmlearn | grep -v __init__ | grep -v external
pylint -E -i y hmmlearn/ -d E1103,E0611,E1101

0 comments on commit eb05783

Please sign in to comment.