https://github.com/galaxyproject/galaxy
Raw File
Tip revision: fdb18045b76220b847163857e6e58acc19cef347 authored by John Chilton on 26 February 2019, 19:28:25 UTC
Update version to 19.01
Tip revision: fdb1804
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