From 16f310586d1d2578e82cf029714aec125a18291f Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 25 Nov 2019 04:56:19 +0100 Subject: [PATCH] Makefile: add a simpler test target --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0ff47a6..84bbd0c 100644 --- a/Makefile +++ b/Makefile @@ -58,6 +58,10 @@ test: pypy3 -m pytest test; \ fi +fast-test: + python3 setup.py build_ext -i + python3 -m pytest test -v + benchmark: $(MODNAME) @set -e; \ TESTFILE=`mktemp`;\ @@ -90,4 +94,4 @@ clean: rm -f *.so rm -rf build -.PHONY: doc test clean dist distcheck coverage +.PHONY: doc test fast-test clean dist distcheck coverage -- 2.39.2