summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jcammarata@ansibleworks.com>2014-02-26 09:26:48 -0600
committerJames Cammarata <jcammarata@ansibleworks.com>2014-02-26 09:26:48 -0600
commit6f1a58abd35bb7855bf87638b4f99a58e1cb6afd (patch)
treefeb37d54c8c3e1a4aa10d3cec3af6d41d61a138e
parent7acd2f3a2d20da92823bba69f1b51c95758bb113 (diff)
downloadansible-6f1a58abd35bb7855bf87638b4f99a58e1cb6afd.tar.gz
Adding a Makefile target for integration tests - "make integration"
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 982cd143b2..fcb1f15860 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