From e24cc2e4d2e2d6aabacfb530c6815926ec1d3902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Tue, 2 Mar 2021 10:36:16 +0100 Subject: Run tests through unittest directly Instead of using `python setup.py test` (which is deprecated), move to the standard `python -m unittest`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c94363c..dd44400 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ testall: # DOC: Run tests for the currently installed version test: - python -Wdefault setup.py test + python -Wdefault -m unittest # DOC: Perform code quality tasks lint: check-manifest flake8 -- cgit v1.2.1