# HG changeset patch # User fubar # Date 1618711200 0 # Node ID 4de39d209c5b13da7307c6ab05b67cb88cb4142c # Parent b36f12eb99dcca5c3afdc439edd2012d36662a49 Uploaded diff -r b36f12eb99dc -r 4de39d209c5b toolfactory/rgToolFactory2.py --- a/toolfactory/rgToolFactory2.py Sat Apr 17 12:29:31 2021 +0000 +++ b/toolfactory/rgToolFactory2.py Sun Apr 18 02:00:00 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.