From 1aa338a353db7f5ce3e14464c110bb6e98562138 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 2 Oct 2014 13:41:52 -0400 Subject: [PATCH] Make target for nosetests, no need to set library path for previous tests --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1e1e02e8a..b1d001104e 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,11 @@ NOSETESTS ?= nosetests all: clean python tests: - PYTHONPATH=./lib ANSIBLE_LIBRARY=./lib/ansible/modules $(NOSETESTS) -d -w test/units -v + PYTHONPATH=./lib $(NOSETESTS) -d -w test/units -v + +newtests: + PYTHONPATH=./lib $(NOSETESTS) -d -w lib/v2/test -v + authors: sh hacking/authors.sh