https://github.com/galaxyproject/galaxy
Raw File
Tip revision: c1397908cd1fc81b294849008b1e5ec1b1381660 authored by Nate Coraor on 15 December 2016, 19:09:48 UTC
Update version to 16.10
Tip revision: c139790
flake8_wrapper.sh
#!/bin/bash

set -e

flake8 --exclude `paste -sd, .ci/flake8_blacklist.txt` .

# Apply stricter rules for the directories shared with Pulsar
flake8 --ignore=D --max-line-length=150 lib/galaxy/jobs/runners/util/
back to top