mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
16 lines
301 B
Makefile
16 lines
301 B
Makefile
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
|