Files
galaxy/test/functional/tools/python_environment_problem.xml
T
John Chilton 8d4f9955a6 Limit adjusting Galaxy's Python environment to legacy tools.
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.
2017-01-03 13:48:48 -05:00

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>