https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 5b79b811a757586099965bd2c6ac73283411a565 authored by mvdbeek on 22 May 2024, 13:07:35 UTC
Also filter out matchedValues using tags
Tip revision: 5b79b81
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