Previous changeset 142:b36f12eb99dc (2021-04-17) Next changeset 144:351d479e4a86 (2021-04-18) |
Commit message:
Uploaded |
modified:
toolfactory/rgToolFactory2.py |
b |
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 |
b |
@@ -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: "<TODO>" -sheds: - # For each tool shed you wish to target, uncomment key or both email and - # password. - toolshed: - #key: "<TODO>" - #email: "<TODO>" - #password: "<TODO>" - testtoolshed: - #key: "<TODO>" - #email: "<TODO>" - #password: "<TODO>" - local: - #key: "<TODO>" - #email: "<TODO>" - #password: "<TODO>" -""" - 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. |