From a77ea0f942fd3bf6debfdece0c2d9d5bc8e4dd66 Mon Sep 17 00:00:00 2001 From: James Laska Date: Fri, 21 Feb 2014 13:13:55 -0500 Subject: [PATCH] Allow custom nosetests parameters The NOSETESTS variable can be used to support customizing the nosetests parameters. This allows providing custom nose parameters such as --with-coverage. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5fa223e2aeb..982cd143b27 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ ifeq ($(OFFICIAL),) endif RPMNVR = "$(NAME)-$(VERSION)-$(RPMRELEASE)$(RPMDIST)" -NOSETESTS := nosetests +NOSETESTS ?= nosetests ########################################################