https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 05b173c8dd974d26c4e47b61a4dba457f7122b95 authored by John Chilton on 15 October 2020, 16:31:55 UTC
Version 20.9.0 of test-selenium (tag galaxy-test-selenium-20.9.0).
Tip revision: 05b173c
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