https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 6df30d6cdf4eeb0bdcda563e4122e2d2b31a61e7 authored by Nicola Soranzo on 02 November 2022, 14:57:01 UTC
Merge branch 'release_20.01' into release_20.05
Tip revision: 6df30d6
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