summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rwxr-xr-xwscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/wscript b/wscript
index 5ccb74d91d..18daaac08c 100755
--- a/wscript
+++ b/wscript
@@ -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