https://github.com/galaxyproject/galaxy
Raw File
Tip revision: b3da771a637ac9f7a4778fd115a09da01f432b1c authored by Nate Coraor on 12 August 2015, 21:14:14 UTC
Bump version to 15.07 (drop .dev)
Tip revision: b3da771
flake8_wrapper.sh
#!/bin/bash

set -e

# Run broad range of checks over specific white-listed files, this uses
# the default checks defined in setup.cfg.
while read p; do
    flake8 $(eval echo "$p")
done <.ci/pep8_sources.txt

# Look for obviously broken stuff lots more places.
flake8 --select=E901,E902,F821,F822,F823,F831 --exclude lib/galaxy/util/pastescript/serve.py,lib/pkg_resources.py lib/ test/{api,unit}
back to top