test:
	nosetests --stop --with-coverage --cover-package=elasticfun --verbosity=2 -s tests

deps:
	pip install -r requirements.txt

clean:
	find . -name '*.pyc' -delete
	rm -rf .coverage
