diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2014-09-26 23:10:13 +0200 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2014-09-26 23:10:13 +0200 |
commit | bceb0026a53cfa6fcf8f9e96fa694a01f2d22a1c (patch) | |
tree | c490a4bd2cc2faabf6ad696623ff4701b3bc41d5 /Makefile | |
parent | changes for package loading of modules (diff) | |
download | ansible-bceb0026a53cfa6fcf8f9e96fa694a01f2d22a1c.tar.xz ansible-bceb0026a53cfa6fcf8f9e96fa694a01f2d22a1c.zip |
Updating the module formatter to deal with the new repo structure.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -91,7 +91,7 @@ NOSETESTS ?= nosetests all: clean python tests: - PYTHONPATH=./lib ANSIBLE_LIBRARY=./library $(NOSETESTS) -d -w test/units -v + PYTHONPATH=./lib ANSIBLE_LIBRARY=./lib/ansible/modules $(NOSETESTS) -d -w test/units -v authors: sh hacking/authors.sh @@ -114,7 +114,7 @@ pep8: @echo "# Running PEP8 Compliance Tests" @echo "#############################################" -pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225,E261,E241 lib/ bin/ - -pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225,E261,E241 --filename "*" library/ + # -pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225,E261,E241 --filename "*" library/ pyflakes: pyflakes lib/ansible/*.py lib/ansible/*/*.py bin/* |