Codebase list gunicorn / upstream/0.14.5 Makefile
upstream/0.14.5

Tree @upstream/0.14.5 (Download .tar.gz)

Makefile @upstream/0.14.5raw · history · blame

build:
	virtualenv --no-site-packages .
	bin/python setup.py develop
	bin/pip install coverage
	bin/pip install nose

test:
	bin/nosetests

coverage:
	bin/nosetests --with-coverage --cover-html --cover-html-dir=html \
		--cover-package=gunicorn

clean:
	@rm -rf .Python bin lib include man build html