https://github.com/galaxyproject/galaxy
Raw File
Tip revision: ce362e60abbafdffa65acaf68f9492cec7196a9d authored by Martin Cech on 23 May 2018, 18:44:54 UTC
Update version to 18.05
Tip revision: ce362e6
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