https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 29e4fc84660a53a407fa77f15142448e68a448af authored by John Chilton on 04 July 2020, 15:44:35 UTC
Version 20.5.0 of web-apps (tag galaxy-web-apps-20.5.0).
Tip revision: 29e4fc8
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