mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-01 18:21:30 +08:00
24 lines
437 B
Makefile
24 lines
437 B
Makefile
build:
|
|
virtualenv venv
|
|
venv/bin/pip install -e .
|
|
venv/bin/pip install -r requirements_dev.txt
|
|
|
|
test:
|
|
venv/bin/python setup.py test
|
|
|
|
coverage:
|
|
venv/bin/python setup.py test --cov
|
|
|
|
docs:
|
|
mkdocs build
|
|
|
|
docs-serve:
|
|
mkdocs serve
|
|
|
|
clean:
|
|
@rm -rf .Python MANIFEST build dist venv* *.egg-info *.egg
|
|
@find . -type f -name "*.py[co]" -delete
|
|
@find . -type d -name "__pycache__" -delete
|
|
|
|
.PHONY: build clean coverage docs docs-serve test
|