gunicorn/Makefile
Adrien Kunysz e6911192ff Remove obsolete Makefile targets.
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
2026-01-27 09:46:42 +01:00

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