]> git.ipfire.org Git - people/stevee/pakfire.git/blame - runpychecker.sh
build parallelism: New way to figure that out.
[people/stevee/pakfire.git] / runpychecker.sh
CommitLineData
ddfb317d
MT
1#!/bin/bash
2
3pychecker --only --limit 1000 \
4 --maxlines 500 --maxargs 20 --maxbranches 80 --maxlocals 60 --maxreturns 20 \
5 --no-callinit --no-local --no-shadow --no-shadowbuiltin \
6 --no-import --no-miximport --no-pkgimport --no-reimport \
7 --no-argsused --no-varargsused --no-override \
8 $(find pakfire -name "*.py" )