aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/ci/travis/lint.sh
blob: 91407c3b419e2cb2a7e36e31fe9bb8148c7ff8c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -ev
which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available

echo "travis_fold:start:pylint_configure"
python3 -m pylint configure.py
python2 -m pylint configure.py
echo "travis_fold:end:pylint_configure"

echo "travis_fold:start:pylint_botanpy"
python3 -m pylint src/python/botan2.py
python2 -m pylint src/python/botan2.py
echo "travis_fold:end:pylint_botanpy"