https://github.com/galaxyproject/galaxy
Raw File
Tip revision: c8e9845c5c57714042a75053d954b1c7f0962672 authored by Nate Coraor on 24 February 2016, 18:34:05 UTC
Update version to 15.05.2
Tip revision: c8e9845
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/{galaxy,tool_shed} test/{api,unit}
back to top