https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 9c593cd0ce4642d2d8d4cdf137616ff141a4f0e6 authored by John Davis on 29 January 2024, 18:27:13 UTC
Update version to 23.2.
Tip revision: 9c593cd
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=E203,D --max-line-length=150 lib/galaxy/jobs/runners/util/
back to top