summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Laska <jlaska@ansible.com>2014-02-21 13:13:55 -0500
committerJames Laska <jlaska@ansible.com>2014-02-21 15:37:16 -0500
commita77ea0f942fd3bf6debfdece0c2d9d5bc8e4dd66 (patch)
tree3945db7db4d1f1608c99df225cb7c6fa1ae1e0ed /Makefile
parentd29da4cba1d9406a337ec01de26b60627a324ebf (diff)
downloadansible-a77ea0f942fd3bf6debfdece0c2d9d5bc8e4dd66.tar.gz
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5fa223e2ae..982cd143b2 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ ifeq ($(OFFICIAL),)
endif
RPMNVR = "$(NAME)-$(VERSION)-$(RPMRELEASE)$(RPMDIST)"
-NOSETESTS := nosetests
+NOSETESTS ?= nosetests
########################################################