Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gfalcone committed Apr 3, 2021
1 parent 3a374ea commit 62251b6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion exec/tests/unit/commands/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,12 @@ def test_get_pipeline_options(
),
)
@pytest.mark.parametrize("blocking", (True, False))
@pytest.mark.parametrize("streaming,exp_call_count", (True, False), 2)
@pytest.mark.parametrize("streaming,exp_call_count",
(
(True, 2),
(False, 2),
),
)
def test_run_pipeline(
streaming,
blocking,
Expand Down

0 comments on commit 62251b6

Please sign in to comment.