https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 2faef5510fc86c2454ed72d65c70302b5bd050a0 authored by mvdbeek on 27 February 2020, 18:42:00 UTC
Update version to 20.01
Tip revision: 2faef55
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