summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2014-09-26 17:10:13 -0400
committerMichael DeHaan <michael.dehaan@gmail.com>2014-09-26 17:10:13 -0400
commitbceb0026a53cfa6fcf8f9e96fa694a01f2d22a1c (patch)
treec490a4bd2cc2faabf6ad696623ff4701b3bc41d5 /Makefile
parente5116d2f9bd851949ae50e0c9c112750e7cec761 (diff)
downloadansible-bceb0026a53cfa6fcf8f9e96fa694a01f2d22a1c.tar.gz
Updating the module formatter to deal with the new repo structure.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index afd7162f96..d1e1e02e8a 100644
--- a/Makefile
+++ b/Makefile
@@ -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/*