aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-05-19 16:02:18 +0000
committerNils Gillmann <ng0@n0.is>2018-05-19 16:02:18 +0000
commit8b28cb7236c887c7a1cc21673e44ea81047f86db (patch)
treedc2a3084b1d6d7dc54213d35b9fc250a4f71c82d /contrib
parent614bd54d90da0cb680f59bfd147c25c42df00feb (diff)
downloadgnunet-8b28cb7236c887c7a1cc21673e44ea81047f86db.tar.gz
gnunet-8b28cb7236c887c7a1cc21673e44ea81047f86db.zip
contrib/scripts: lint-python.sh, small wrapper
Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/scripts/lint-python.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/scripts/lint-python.sh b/contrib/scripts/lint-python.sh
new file mode 100755
index 000000000..9f7e0462d
--- /dev/null
+++ b/contrib/scripts/lint-python.sh
@@ -0,0 +1,24 @@
1#!/bin/sh
2# check python style (and 2 to 3 migration)
3
4rm python-lint.log
5
6if [ -e "python" ]
7then
8 python --version >> python-lint.log
9fi
10
11if [ -e "python2" ]
12then
13 python2 --version >> python-lint.log
14fi
15
16if [ -e "python3" ]
17then
18 python3 --version >> python-lint.log
19fi
20
21flake8 >> python-lint.log
22
232to3 -v -d . >> python-lint.log
242to3 -v -p . >> python-lint.log