https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 99c8f54a77c436125359f17a8d681f115e157742 authored by John Chilton on 18 May 2016, 11:43:10 UTC
Update version to 16.04
Tip revision: 99c8f54
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