Adding a Makefile target for integration tests - "make integration"
This commit is contained in:
parent
7acd2f3a2d
commit
6f1a58abd3
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -61,6 +61,9 @@ NOSETESTS ?= nosetests
|
||||||
|
|
||||||
all: clean python
|
all: clean python
|
||||||
|
|
||||||
|
integration:
|
||||||
|
(cd test/integration; make all)
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
PYTHONPATH=./lib ANSIBLE_LIBRARY=./library $(NOSETESTS) -d -w test/units -v
|
PYTHONPATH=./lib ANSIBLE_LIBRARY=./library $(NOSETESTS) -d -w test/units -v
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue