https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 887f1ec9256045b4959e4caf30dcc60509973c60 authored by Dannon Baker on 25 September 2023, 22:06:55 UTC
Update version to 23.1.
Tip revision: 887f1ec
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