diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-02 11:11:48 -0700 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-12 13:30:27 -0700 |
commit | 15d7f5384640c379f73265ab1bdb72c2b267e4d9 (patch) | |
tree | 79bf458b83d93936b07a41707935ccc82a1b6f92 /Makefile | |
parent | b49e0995cb1049cf3c9c184601f00cdd4ba59760 (diff) | |
download | ansible-15d7f5384640c379f73265ab1bdb72c2b267e4d9.tar.gz |
AnsibleModules.log() fix for python3py3-module_utils-log
Also add unittests for AnsibleModules.log()
Fixes #12586
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -93,7 +93,7 @@ MOCK_CFG ?= NOSETESTS ?= nosetests -NOSETESTS3 ?= nosetests-3.3 +NOSETESTS3 ?= nosetests-3.4 ######################################################## @@ -102,11 +102,8 @@ all: clean python tests: PYTHONPATH=./lib $(NOSETESTS) -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches -newtests: - PYTHONPATH=./v2:./lib $(NOSETESTS) -d -w v2/test -v --with-coverage --cover-package=ansible --cover-branches - -newtests-py3: - PYTHONPATH=./v2:./lib $(NOSETESTS3) -d -w v2/test -v --with-coverage --cover-package=ansible --cover-branches +tests-py3: + PYTHONPATH=./lib $(NOSETESTS3) -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches authors: sh hacking/authors.sh |