mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
Don't expose Galaxy's environment to tools unless there is evidence we need to. This should restrict future bugs by limitting what tools are exposed to Galaxy's internals and will fix bugs related to Conda dependencies masking Galaxy - such as #2994. Should fix #2994. Rebased with language and tool best practice fixes thanks to @mvdbeek.
21 lines
558 B
XML
21 lines
558 B
XML
<tool id="python_environment_problem" name="python_environment_problem" version="0.1.0">
|
|
<!--
|
|
This script imports galaxy.eggs which is no longer available to tools
|
|
by default. Only declared legacy tools have this available.
|
|
-->
|
|
<command>
|
|
python $__tool_directory__/python_environment_problem.py '$out_file1'
|
|
</command>
|
|
<inputs>
|
|
</inputs>
|
|
<outputs>
|
|
<data name="out_file1" />
|
|
</outputs>
|
|
<tests>
|
|
<test expect_failure="true">
|
|
</test>
|
|
</tests>
|
|
<help>
|
|
</help>
|
|
</tool>
|