mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-29 02:26:59 +08:00
9 lines
218 B
Bash
Executable File
9 lines
218 B
Bash
Executable File
#!/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/
|