1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#!/bin/sh
# Copyright © 2022-2023 Simon McVittie
# Copyright © 2018-2023 Collabora Ltd.
# SPDX-License-Identifier: GPL-2.0-or-later
echo "TAP version 13"
if command -v pyflakes3 >/dev/null; then
pyflakes=pyflakes3
elif command -v pyflakes3k >/dev/null; then
pyflakes=pyflakes3k
elif command -v python3-pyflakes >/dev/null; then
pyflakes=python3-pyflakes
elif command -v pyflakes-3 >/dev/null; then
pyflakes=pyflakes-3
elif [ -x "$(ls -1 /usr/bin/pyflakes-python3.* 2>/dev/null | tail -n 1)" ]; then
pyflakes="$(ls -1 /usr/bin/pyflakes-python3.* 2>/dev/null | tail -n 1)"
else
echo "1..0 # SKIP pyflakes3 not found"
exit 0
fi
cd "$GDP_SRCDIR"
export LC_ALL=C.UTF-8
n=0
failed=0
for file in \
game_data_packager/*.py \
game_data_packager/*/*.py \
runtime/*.py \
tests/*.py \
tools/*.py \
; do
n=$(( n + 1 ))
if "$pyflakes" "$file" >&2; then
echo "ok $n - $file"
elif [ -n "${LINT_WARNINGS_ARE_ERRORS-}" ]; then
echo "not ok $n - $file"
failed=1
else
echo "not ok $n - $file # TODO warnings from pyflakes"
fi
done
echo "1..$n"
exit "$failed"
|