https://github.com/galaxyproject/galaxy
Raw File
Tip revision: e0aad7af47547c04013dffe3874e757c905b2021 authored by John Chilton on 25 August 2016, 17:41:10 UTC
Update version to 16.07
Tip revision: e0aad7a
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= --max-line-length=150 lib/galaxy/jobs/runners/util/
back to top