2022-10-30 14:21:20 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Description: lint CI related python scripts/tests
|
2022-11-20 15:36:28 +00:00
|
|
|
# https://postmarketos.org/pmb-ci
|
2022-10-30 14:21:20 +00:00
|
|
|
|
|
|
|
if [ "$(id -u)" = 0 ]; then
|
|
|
|
set -x
|
|
|
|
apk -q add py3-flake8
|
|
|
|
exec su "${TESTUSER:-build}" -c "sh -e $0"
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# shellcheck disable=SC2046
|
|
|
|
flake8 --ignore E501,F401,E722,W504,W605 $(find .ci -name '*.py')
|