Signed-off-by: Nils Gillmann <ng0@n0.is>
src/namestore/perf_namestore_api_zone_iteration_flat
src/namestore/perf_namestore_api_zone_iteration_postgres
src/namestore/perf_namestore_api_zone_iteration_sqlite
+python-lint.log
--- /dev/null
+#!/bin/sh
+# check python style (and 2 to 3 migration)
+
+rm python-lint.log
+
+if [ -e "python" ]
+then
+ python --version >> python-lint.log
+fi
+
+if [ -e "python2" ]
+then
+ python2 --version >> python-lint.log
+fi
+
+if [ -e "python3" ]
+then
+ python3 --version >> python-lint.log
+fi
+
+flake8 >> python-lint.log
+
+2to3 -v -d . >> python-lint.log
+2to3 -v -p . >> python-lint.log