https://github.com/galaxyproject/galaxy
Raw File
Tip revision: a50878613d134d23e27364a3c779cb6fe81eefb5 authored by John Chilton on 14 March 2020, 13:27:33 UTC
Prep release for tool-util 20.5.0.dev0
Tip revision: a508786
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