https://github.com/galaxyproject/galaxy
Raw File
Tip revision: f546e5097a383d8e029150c833562bf26d744303 authored by John Chilton on 15 October 2020, 16:23:35 UTC
Version 20.9.0 of test-base (tag galaxy-test-base-20.9.0).
Tip revision: f546e50
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