Files @ 2ef4f7c0031e
Branch filter:

Location: kallithea/scripts/run-all-cleanup

Thomas De Schampheleire
tests: merge test_repo_groups.py into test_admin_repo_groups.py

Two files testing the same underlying code.
As this code is really in the 'admin' section, merge into
test_admin_repo_groups.py.
#!/bin/sh

# Convenience script for running various idempotent source code cleanup scripts

set -e
set -x

hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/deps.py
dot -Tsvg deps.dot > deps.svg

scripts/docs-headings.py
scripts/generate-ini.py
scripts/whitespacecleanup.sh
hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/source_format.py

hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/pyflakes
echo "no blocking problems found by $0"