https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 9d31330c4ca1d0396166387c54d13483e0020a2f authored by Nicola Soranzo on 02 November 2022, 15:32:02 UTC
Merge branch 'release_20.05' into release_20.09
Tip revision: 9d31330
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