https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 13ab9430b369b6172621e34e3b3d4ca264a04356 authored by mvdbeek on 20 September 2024, 05:15:06 UTC
Merge branch 'release_20.05' into release_20.09
Tip revision: 13ab943
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