https://github.com/galaxyproject/galaxy
Raw File
Tip revision: a7f0a365be176e8ae4445db147a634b3b1fbb3b3 authored by mvdbeek on 13 June 2023, 15:58:13 UTC
Create version 23.0.2
Tip revision: a7f0a36
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