diff options
-rw-r--r-- | Makefile | 3 | ||||
-rwxr-xr-x | wscript | 8 |
2 files changed, 11 insertions, 0 deletions
@@ -73,3 +73,6 @@ FORCE: pydoctor: $(WAF) pydoctor + +pep8: + $(WAF) pep8 @@ -152,6 +152,14 @@ def pydoctor(ctx): print("Running: %s" % cmd) os.system(cmd) + +def pep8(ctx): + '''run pep8 validator''' + cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba' + print("Running: %s" % cmd) + os.system(cmd) + + def wafdocs(ctx): '''build wafsamba apidocs''' from samba_utils import recursive_dirlist |