Commit 617352a3 by Toshio Kuratomi

Python3 test target and use coverage for all v2 tests.

parent 692d31d2
...@@ -86,16 +86,20 @@ MOCK_CFG ?= ...@@ -86,16 +86,20 @@ MOCK_CFG ?=
NOSETESTS ?= nosetests NOSETESTS ?= nosetests
NOSETESTS3 ?= nosetests-3.3
######################################################## ########################################################
all: clean python all: clean python
tests: tests:
PYTHONPATH=./lib $(NOSETESTS) -d -w test/units -v PYTHONPATH=./lib $(NOSETESTS) -d -w test/units -v # Could do: --with-coverage --cover-package=ansible
newtests: newtests:
PYTHONPATH=./v2:./lib $(NOSETESTS) -d -w test/v2 -v PYTHONPATH=./v2:./lib $(NOSETESTS) -d -w test/v2 -v --with-coverage --cover-package=ansible
newtests-py3:
PYTHONPATH=./v2:./lib $(NOSETESTS3) -d -w test/v2 -v --with-coverage --cover-package=ansible
authors: authors:
sh hacking/authors.sh sh hacking/authors.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment