aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/ci/travis/lint.sh
blob: e7335a0a16c451e44917b579344e5896e44f68e4 (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 || true
python2 -m pylint src/python/botan2.py || true
echo "travis_fold:end:pylint_botanpy"