https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 13fbcbee5eff95db03363c30ae5de8e5fa5a2be6 authored by John Chilton on 14 January 2020, 03:55:16 UTC
Update tool-util requirements (now depends a new galaxy-util).
Tip revision: 13fbcbe
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