Skip to content

Commit

Permalink
Adapt to setuptools>=72 (#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix authored Nov 27, 2024
1 parent d40def6 commit 725d4a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ debug: _touch


test:
PYTHONASYNCIODEBUG=1 $(PYTHON) setup.py test
$(PYTHON) setup.py test
USE_UVLOOP=1 $(PYTHON) setup.py test
PYTHONASYNCIODEBUG=1 $(PYTHON) -m unittest tests.suite
$(PYTHON) -m unittest tests.suite
USE_UVLOOP=1 $(PYTHON) -m unittest tests.suite


testinstalled:
cd /tmp && $(PYTHON) $(ROOT)/tests/__init__.py


quicktest:
$(PYTHON) setup.py test
$(PYTHON) -m unittest tests.suite


htmldocs:
Expand Down

0 comments on commit 725d4a7

Please sign in to comment.