https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 2fef7e339e7ed4da93ff2d8d2c8c312b8e04ac02 authored by mvdbeek on 23 September 2024, 08:57:32 UTC
Fix wrong final state when init_from is used
Tip revision: 2fef7e3
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