Browse code

Adding a Makefile target for integration tests - "make integration"

James Cammarata authored on 2014/02/27 00:26:48
Showing 1 changed files
... ...
@@ -61,6 +61,9 @@ NOSETESTS ?= nosetests
61 61
 
62 62
 all: clean python
63 63
 
64
+integration:
65
+	(cd test/integration; make all)
66
+
64 67
 tests:
65 68
 	PYTHONPATH=./lib ANSIBLE_LIBRARY=./library  $(NOSETESTS) -d -w test/units -v
66 69