diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-02 20:11:48 +0200 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-12 22:30:27 +0200 |
commit | 15d7f5384640c379f73265ab1bdb72c2b267e4d9 (patch) | |
tree | 79bf458b83d93936b07a41707935ccc82a1b6f92 /Makefile | |
parent | Fix typo (diff) | |
download | ansible-15d7f5384640c379f73265ab1bdb72c2b267e4d9.tar.xz ansible-15d7f5384640c379f73265ab1bdb72c2b267e4d9.zip |
AnsibleModules.log() fix for python3
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 |