mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
14 lines
244 B
Makefile
14 lines
244 B
Makefile
build:
|
|
virtualenv --no-site-packages .
|
|
bin/python setup.py develop
|
|
bin/pip install -r requirements_dev.txt
|
|
|
|
test:
|
|
./bin/py.test tests/
|
|
|
|
coverage:
|
|
./bin/py.test --cov gunicorn tests/
|
|
|
|
clean:
|
|
@rm -rf .Python bin lib include man build html
|