@@ -711,7 +711,7 @@ def _flatten_dict(obj, key_string=""):
711711
712712
713713@pytest .mark .parametrize ("provider" , available_workflow_providers ())
714- def test_workflow_execute_command_with_api_parameter_set (runner , run_shell , project , capsys , transaction_id , provider ):
714+ def test_workflow_execute_command_with_api_parameter_set (runner , run_shell , project , transaction_id , provider ):
715715 """Test executing a workflow with --set for a renku.ui.api.Parameter."""
716716 script = project .path / "script.py"
717717 output = project .path / "output"
@@ -740,7 +740,7 @@ def test_workflow_execute_command_with_api_parameter_set(runner, run_shell, proj
740740
741741
742742@pytest .mark .parametrize ("provider" , available_workflow_providers ())
743- def test_workflow_execute_command_with_api_input_set (runner , run_shell , project , capsys , transaction_id , provider ):
743+ def test_workflow_execute_command_with_api_input_set (runner , run_shell , project , transaction_id , provider ):
744744 """Test executing a workflow with --set for a renku.ui.api.Input."""
745745 script = project .path / "script.py"
746746 output = project .path / "output"
@@ -775,7 +775,7 @@ def test_workflow_execute_command_with_api_input_set(runner, run_shell, project,
775775
776776
777777@pytest .mark .parametrize ("provider" , available_workflow_providers ())
778- def test_workflow_execute_command_with_api_output_set (runner , run_shell , project , capsys , transaction_id , provider ):
778+ def test_workflow_execute_command_with_api_output_set (runner , run_shell , project , transaction_id , provider ):
779779 """Test executing a workflow with --set for a renku.ui.api.Output."""
780780 script = project .path / "script.py"
781781 output = project .path / "output"
@@ -806,7 +806,7 @@ def test_workflow_execute_command_with_api_output_set(runner, run_shell, project
806806 assert 0 == result .exit_code , format_result_exception (result )
807807
808808
809- def test_workflow_execute_command_with_api_duplicate_output (runner , run_shell , project , capsys , transaction_id ):
809+ def test_workflow_execute_command_with_api_duplicate_output (run_shell , project , transaction_id ):
810810 """Test executing a workflow with duplicate output with differing path."""
811811 script = project .path / "script.py"
812812 output = project .path / "output"
@@ -824,7 +824,7 @@ def test_workflow_execute_command_with_api_duplicate_output(runner, run_shell, p
824824 assert b"Error: Invalid parameter value - Duplicate input/output name found: my-output\n " in result [0 ]
825825
826826
827- def test_workflow_execute_command_with_api_valid_duplicate_output (runner , run_shell , project , capsys , transaction_id ):
827+ def test_workflow_execute_command_with_api_valid_duplicate_output (run_shell , project , transaction_id ):
828828 """Test executing a workflow with duplicate output with same path."""
829829 script = project .path / "script.py"
830830 output = project .path / "output"
@@ -844,7 +844,7 @@ def test_workflow_execute_command_with_api_valid_duplicate_output(runner, run_sh
844844 assert result [1 ] is None
845845
846846
847- def test_workflow_execute_command_with_api_duplicate_input (runner , run_shell , project , capsys , transaction_id ):
847+ def test_workflow_execute_command_with_api_duplicate_input (run_shell , project , transaction_id ):
848848 """Test executing a workflow with duplicate input with differing path."""
849849 script = project .path / "script.py"
850850 input = project .path / "input"
@@ -862,7 +862,7 @@ def test_workflow_execute_command_with_api_duplicate_input(runner, run_shell, pr
862862 assert b"Error: Invalid parameter value - Duplicate input/output name found: my-input\n " in result [0 ]
863863
864864
865- def test_workflow_execute_command_with_api_valid_duplicate_input (runner , run_shell , project , capsys , transaction_id ):
865+ def test_workflow_execute_command_with_api_valid_duplicate_input (run_shell , project , transaction_id ):
866866 """Test executing a workflow with duplicate input with same path."""
867867 script = project .path / "script.py"
868868 input = project .path / "input"
0 commit comments