# HG changeset patch # User fubar # Date 1618711266 0 # Node ID 2fc9b11bbdba5b162b99d4a9a766029b72b3cfa3 # Parent 43edf22e8cbc5025e74e9e78ed0621ea12bb42b9 Uploaded diff -r 43edf22e8cbc -r 2fc9b11bbdba toolfactory/rgToolFactory2.py --- a/toolfactory/rgToolFactory2.py Sat Apr 17 23:43:33 2021 +0000 +++ b/toolfactory/rgToolFactory2.py Sun Apr 18 02:01:06 2021 +0000 @@ -1056,7 +1056,6 @@ "test", "--galaxy_python_version", self.args.python_version, - "--conda_auto_init", "--test_data", os.path.abspath(self.testdir), "--test_output", @@ -1076,37 +1075,6 @@ tout.close() return p.returncode - def set_planemo_galaxy_root(self, galaxyroot='/galaxy-central', config_path=".planemo.yml"): - # bug in planemo - bogus '--dev-wheels' passed to run_tests.sh as at april 2021 - need a fiddled copy so it is ignored until fixed - CONFIG_TEMPLATE = """## Planemo Global Configuration File. -## Everything in this file is completely optional - these values can all be -## configured via command line options for the corresponding commands. - -## Specify a default galaxy_root for test and server commands here. -galaxy_root: %s -## Username used with toolshed(s). -#shed_username: "" -sheds: - # For each tool shed you wish to target, uncomment key or both email and - # password. - toolshed: - #key: "" - #email: "" - #password: "" - testtoolshed: - #key: "" - #email: "" - #password: "" - local: - #key: "" - #email: "" - #password: "" -""" - if not os.path.exists(config_path): - with open(config_path, "w") as f: - f.write(CONFIG_TEMPLATE % galaxyroot) - - def main(): """ This is a Galaxy wrapper.