From baddf30c5bc25546bce6146981dd1d069e3ed322 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Wed, 21 Nov 2018 12:17:09 +0100 Subject: [PATCH] Remove unneeded `--galaxy_branch` option in 4 tests --- tests/test_cmd_test.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/test_cmd_test.py b/tests/test_cmd_test.py index fd264d603..e35b3cc89 100644 --- a/tests/test_cmd_test.py +++ b/tests/test_cmd_test.py @@ -29,7 +29,6 @@ def test_workflow_test_simple_yaml(self): test_command = self.append_profile_argument_if_needed(test_command) test_command += [ "--no_dependency_resolution", - "--galaxy_branch", "release_18.01", # Much better workflow output detection than master for now (pre-release of 18.01) "--extra_tools", random_lines, "--extra_tools", cat, test_artifact, @@ -49,7 +48,6 @@ def test_workflow_test_simple_ga(self): test_command = self.append_profile_argument_if_needed(test_command) test_command += [ "--no_dependency_resolution", - "--galaxy_branch", "release_18.01", # Much better workflow output detection than master for now (pre-release of 18.01) "--extra_tools", cat, test_artifact, ] @@ -72,7 +70,6 @@ def test_workflow_test_distro_tool(self): test_command = self.append_profile_argument_if_needed(test_command) test_command += [ "--no_dependency_resolution", - "--galaxy_branch", "release_18.01", # Much better workflow output detection than master for now (pre-release of 18.01) test_artifact, ] # try: @@ -95,7 +92,6 @@ def test_workflow_test_collection_inputs(self): test_command = self.append_profile_argument_if_needed(test_command) test_command += [ "--no_dependency_resolution", - "--galaxy_branch", "release_18.01", # Much better workflow output detection than master for now (pre-release of 18.01) "--extra_tools", cat_list, test_artifact, ]