Make target for nosetests, no need to set library path for previous tests
parent
afe1409a6e
commit
1aa338a353
6
Makefile
6
Makefile
|
@ -91,7 +91,11 @@ NOSETESTS ?= nosetests
|
||||||
all: clean python
|
all: clean python
|
||||||
|
|
||||||
tests:
|
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:
|
authors:
|
||||||
sh hacking/authors.sh
|
sh hacking/authors.sh
|
||||||
|
|
Loading…
Reference in New Issue