mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-01 10:11:30 +08:00
The `test` and `coverage` targets rely on `setup.py` which was removed "about 10 years ago". There is apparently no interest in fixing them. This change removes them to avoid confusion. As per https://github.com/benoitc/gunicorn/issues/3386
18 lines
337 B
Makefile
18 lines
337 B
Makefile
build:
|
|
virtualenv venv
|
|
venv/bin/pip install -e .
|
|
venv/bin/pip install -r requirements_dev.txt
|
|
|
|
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 docs docs-serve
|