https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 0a039981bb2465064595f789c28a1ba1a765e7a9 authored by mvdbeek on 20 September 2024, 06:15:59 UTC
Merge branch 'release_21.05' into release_21.09
Tip revision: 0a03998
flake8_wrapper.sh
#!/bin/bash

set -e

flake8 --exclude $(paste -sd, .ci/flake8_ignorelist.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