forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from guerler/remove_mako_preferences_revision
Remove mako preferences revision
- Loading branch information
Showing
254 changed files
with
4,844 additions
and
3,858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
.venv/ | ||
.tox/ | ||
eggs/ | ||
client/ | ||
client/node_modules/ | ||
database/ | ||
doc/patch.py | ||
doc/source/conf.py | ||
eggs/ | ||
lib/galaxy/util/jstree.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
lib/galaxy/jobs/metrics | ||
lib/galaxy/exceptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# D100 - Missing docstring in public module. | ||
# D2XX - Whitespace issues. | ||
# D3XX - Quoting issues. | ||
# D401 - First line should be in imperative mood | ||
# D403 - First word of the first line should be properly capitalized | ||
args="--ignore=D --select=D100,D201,D202,D206,D207,D208,D209,D211,D3,D401,D403" | ||
|
||
# If the first argument is --include, lint the modules expected to pass. If | ||
# the first argument is --exclude, lint all modules the full Galaxy linter lints | ||
# (this will fail). | ||
|
||
if [ "$1" = "--include" ]; | ||
then | ||
flake8 $args `paste .ci/flake8_docstrings_include_list.txt` | ||
else | ||
flake8 $args --exclude `paste -sd, .ci/flake8_blacklist.txt` . | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.