diff --git a/exec/tests/unit/commands/test_run.py b/exec/tests/unit/commands/test_run.py index afdbf8d6..34734018 100644 --- a/exec/tests/unit/commands/test_run.py +++ b/exec/tests/unit/commands/test_run.py @@ -658,15 +658,13 @@ def test_get_pipeline_options( @pytest.mark.parametrize( "direct_runner,streaming,run_error,exp_call_count", ( - (True, True, None, 2), - (False, True, None, 2), - (True, True, ValueError("No running job found with name"), 2), - (True, False, None, 1), - (False, False, None, 1), - (True, False, ValueError("No running job found with name"), 2), + (True, None, 1), + (False, None, 1), + (True, ValueError("No running job found with name"), 2), ), ) @pytest.mark.parametrize("blocking", (True, False)) +@pytest.mark.parametrize("streaming", (True, False)) def test_run_pipeline( streaming, blocking,