Skip to content

Commit

Permalink
Rollback tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gfalcone committed Apr 3, 2021
1 parent 13313da commit b95d6b0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions exec/tests/unit/commands/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b95d6b0

Please sign in to comment.