https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 7c443eda567ece12fb90330e131e7f97c7b63ba2 authored by Nate Coraor on 15 December 2016, 17:38:28 UTC
Merge branch 'release_15.03' into release_15.05
Tip revision: 7c443ed
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