https://github.com/galaxyproject/galaxy
Raw File
Tip revision: fcd9db192b8198c852d5bf9a11a6821bfb432099 authored by mvdbeek on 03 November 2021, 08:48:37 UTC
Version 21.9.1 of tool-util (tag galaxy-tool-util-21.9.1).
Tip revision: fcd9db1
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=D --max-line-length=150 lib/galaxy/jobs/runners/util/
back to top