aboutsummaryrefslogtreecommitdiff
path: root/lava-project-ci.py
diff options
context:
space:
mode:
authorTyler Baker <tyler.baker@linaro.org>2014-03-21 12:02:21 -0700
committerTyler Baker <tyler.baker@linaro.org>2014-03-21 12:02:21 -0700
commitef65cba5f31d7b8f10d0e081043f1cd4a67eb6b2 (patch)
tree5916671c209e3adba7e1ef43b874f0f7a9983707 /lava-project-ci.py
parent72c17b4e9e84bc2f75e8e2dfb65ac3104ab7ae6c (diff)
clean up comment and remove extra process output
Diffstat (limited to 'lava-project-ci.py')
-rw-r--r--lava-project-ci.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lava-project-ci.py b/lava-project-ci.py
index 9e57c5d..27cabcd 100644
--- a/lava-project-ci.py
+++ b/lava-project-ci.py
@@ -1,5 +1,5 @@
#!/usr/bin/python
-# Usage ./lava-project-pep8-compliance <pep-ignore-options> <debug>
+# Usage ./lava-projectci.py <pep-ignore-options>
import sys
import os
import subprocess
@@ -78,7 +78,6 @@ def checkout_and_rebase():
except subprocess.CalledProcessError as e:
message = '* SETUP STEP FAILED: %s' % cmd
result_message_list.append(message)
- print e.output
publish_result()
exit(1)
@@ -115,7 +114,6 @@ def pep8_check(ignore_options):
message_list.append('* ' + line)
message = '\n'.join(message_list)
result_message_list.append(message)
- print e.output
cmd_verbose = 'pep8 --ignore %s --show-source --show-pep8 .' % ignore_options
subprocess.call(cmd_verbose, shell=True)
publish_result(False)