https://github.com/galaxyproject/galaxy
Raw File
Tip revision: d7cc9889790e444433851dc5ec3b6ea799dd7ab8 authored by mvdbeek on 01 December 2023, 10:54:43 UTC
Create version 23.1.3
Tip revision: d7cc988
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=E203,D --max-line-length=150 lib/galaxy/jobs/runners/util/
back to top