https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 267037fa7a3488cd4e24a5fce89eb84326669005 authored by Nicola Soranzo on 12 December 2019, 17:42:02 UTC
Merge branch 'release_16.07' into release_16.10
Tip revision: 267037f
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