From e6911192fff209885d0fafdf42cabf5d36df4548 Mon Sep 17 00:00:00 2001 From: Adrien Kunysz Date: Tue, 27 Jan 2026 09:46:42 +0100 Subject: [PATCH] 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 --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 2c7d8bc2..17f2f285 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,6 @@ build: 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 @@ -20,4 +14,4 @@ clean: @find . -type f -name "*.py[co]" -delete @find . -type d -name "__pycache__" -delete -.PHONY: build clean coverage docs docs-serve test +.PHONY: build clean docs docs-serve