https://github.com/galaxyproject/galaxy
Revision b9628eb863fe2971597cc4165ed0c134b8d2a02c authored by John Chilton on 09 March 2017, 20:59:24 UTC, committed by John Chilton on 10 March 2017, 01:19:13 UTC
This allows Planemo to do some cool stuff like running CWL tools right from dockstore:

planemo run dockstore://quay.io/briandoconnor/dockstore-tool-md5sum job.json

But would also be useful for linting tools and such from URLs.
1 parent 92401b0
Raw File
Tip revision: b9628eb863fe2971597cc4165ed0c134b8d2a02c authored by John Chilton on 09 March 2017, 20:59:24 UTC
Add location fetching for Galaxy tools.
Tip revision: b9628eb
.coveragerc
# .coveragerc to control coverage.py
[run]
branch = True
include = galaxy/*

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    if __name__ == .__main__.:

ignore_errors = True

[html]
directory = htmlcov/
back to top