summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-09-24 17:32:26 +0300
committerLars Wirzenius <liw@liw.fi>2017-09-24 18:19:31 +0300
commit6048e6025dc68214cc2732f6fdd713d0b66aa1c2 (patch)
treef4cff634ce8b05fad505b8a942fda3a9394505b0
parent22ceeee6790b00fdaf39d30f10979a454f0a2ea4 (diff)
downloadick2-6048e6025dc68214cc2732f6fdd713d0b66aa1c2.tar.gz
Add: run pep8 on Python sources
-rwxr-xr-xcheck10
-rw-r--r--ick_controller.py3
2 files changed, 12 insertions, 1 deletions
diff --git a/check b/check
index d78223a..e7ec643 100755
--- a/check
+++ b/check
@@ -33,6 +33,7 @@ title()
title Unit tests
python3 -m CoverageTestRunner --ignore-missing-from=without-tests ick2
+
if [ -e .git ]
then
sources="$(git ls-files | grep -Fvxf copyright-exceptions)"
@@ -44,6 +45,11 @@ then
./is-agpl3+ $sources
fi
+python_sources="ick_controller.py worker-manager ick2"
+
+title pycodestyle
+pycodestyle ick2 $python_sources
+
title Yarns
yarn yarns/*.yarn \
--shell python2 \
@@ -51,3 +57,7 @@ yarn yarns/*.yarn \
--shell-library yarns/lib.py \
--cd-datadir \
"$@"
+
+
+title OK
+echo "All tests pass"
diff --git a/ick_controller.py b/ick_controller.py
index 5fc44c5..0957ae6 100644
--- a/ick_controller.py
+++ b/ick_controller.py
@@ -15,7 +15,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
import os
@@ -29,6 +28,8 @@ import ick2
transactions = slog.Counter()
+
+
def counter():
return 'HTTP transaction {}'.format(transactions.increment())