From 6f1a58abd35bb7855bf87638b4f99a58e1cb6afd Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Wed, 26 Feb 2014 09:26:48 -0600 Subject: [PATCH] Adding a Makefile target for integration tests - "make integration" --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 982cd143b27..fcb1f158606 100644 --- a/Makefile +++ b/Makefile @@ -61,6 +61,9 @@ NOSETESTS ?= nosetests all: clean python +integration: + (cd test/integration; make all) + tests: PYTHONPATH=./lib ANSIBLE_LIBRARY=./library $(NOSETESTS) -d -w test/units -v