mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
add a makefile
This commit is contained in:
parent
a62fac6e30
commit
4542e19e38
6
.gitignore
vendored
6
.gitignore
vendored
@ -8,12 +8,18 @@ setuptools-*
|
||||
.svn/*
|
||||
.DS_Store
|
||||
*.so
|
||||
.Python
|
||||
distribute-0.6.8-py2.6.egg
|
||||
distribute-0.6.8.tar.gz
|
||||
gunicorn.egg-info
|
||||
nohup.out
|
||||
.coverage
|
||||
doc/.sass-cache
|
||||
bin/
|
||||
lib/
|
||||
man/
|
||||
include/
|
||||
html/
|
||||
examples/frameworks/pylonstest/PasteScript*
|
||||
examples/frameworks/pylonstest/pylonstest.egg-info/
|
||||
examples/frameworks/django/testing/testdb.sql
|
||||
|
||||
15
Makefile
Normal file
15
Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
||||
Loading…
x
Reference in New Issue
Block a user