https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 00022427d5b83a0e3172b8bf24743d9fae334276 authored by mvdbeek on 17 November 2020, 20:02:41 UTC
Update version to 20.09
Tip revision: 0002242
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