https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 52f60b50a462ef9fa6697addb45874d1a7120d31 authored by mvdbeek on 28 October 2022, 08:30:23 UTC
Release tool-util package 22.1.4
Tip revision: 52f60b5
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