forked from galaxyproject/galaxy
-
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #1 from galaxyproject/dev
Update from Galaxyproject repo
- Loading branch information
Showing
3,287 changed files
with
225,648 additions
and
244,949 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
exclude=$(sed -e 's|^|./|' -e 's|/$||' .ci/flake8_blacklist.txt | paste -s -d ',' - ) | ||
autopep8 -i -r --exclude $exclude --select E11,E101,E127,E201,E202,E22,E301,E302,E303,E304,E306,E711,W291,W292,W293,W391 ./lib/ ./test/ |
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,35 @@ | ||
#!/bin/sh | ||
|
||
if command -v ack-grep >/dev/null; then | ||
ACK=ack-grep | ||
else | ||
ACK=ack | ||
fi | ||
|
||
export ACK_OPTIONS=" --type python \ | ||
--ignore-dir=.git \ | ||
--ignore-dir=.tox \ | ||
--ignore-dir=.venv \ | ||
--ignore-dir=.venv3 \ | ||
--ignore-dir=client/node_modules \ | ||
--ignore-dir=database \ | ||
--ignore-dir=doc/build \ | ||
--ignore-dir=eggs \ | ||
--ignore-dir=static/maps \ | ||
--ignore-dir=static/scripts" | ||
|
||
PYTHON2_ONLY_MODULES="__builtin__ _winreg BaseHTTPServer CGIHTTPServer \ | ||
ConfigParser Cookie cookielib copy_reg cPickle cStringIO Dialog dummy_thread \ | ||
FileDialog gdbm htmlentitydefs HTMLParser httplib Queue robotparser \ | ||
ScrolledText SimpleDialog SimpleHTTPServer SimpleXMLRPCServer SocketServer \ | ||
StringIO thread Tix tkColorChooser tkCommonDialog Tkconstants Tkdnd tkFont \ | ||
Tkinter tkFileDialog tkMessageBox tkSimpleDialog ttk urllib urllib2 urlparse \ | ||
xmlrpclib" | ||
|
||
ret=0 | ||
for mod in $PYTHON2_ONLY_MODULES; do | ||
$ACK "^import $mod(\n|\.)|^from $mod import " | ||
if [ $? -eq 0 ]; then ret=1; fi | ||
done | ||
|
||
exit $ret |
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
.venv/ | ||
.tox/ | ||
client/node_modules/ | ||
database/ | ||
.git | ||
.tox | ||
.venv | ||
.venv3 | ||
client/node_modules | ||
database | ||
doc/build | ||
doc/source/conf.py | ||
eggs/ | ||
eggs | ||
lib/galaxy/util/jstree.py | ||
lib/galaxy/web/proxy/js/node_modules/ | ||
static/maps | ||
static/scripts |
Oops, something went wrong.