Files
galaxy/test/functional/tools/python_environment_problem.py
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

13 lines
160 B
Python

import sys
import galaxy.eggs # NOQA
def main():
with open(sys.argv[1], "w") as f:
f.write("out_file1")
if __name__ == '__main__':
main()