# HG changeset patch # User fubar # Date 1618712053 0 # Node ID 36d46b20095a1f0955d0c63cf288fecfe055c7e9 # Parent 11a89a9f2f92a090a2a7273742cc3224c6f83932 Uploaded diff -r 11a89a9f2f92 -r 36d46b20095a toolfactory/rgToolFactory2.py --- a/toolfactory/rgToolFactory2.py Sat Apr 17 23:34:51 2021 +0000 +++ b/toolfactory/rgToolFactory2.py Sun Apr 18 02:14:13 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.