Skip to content

Commit

Permalink
Add xfail (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmbmb authored Aug 5, 2024
1 parent bcbf6a1 commit 94852c4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration/test_routing_batch_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def CombineGenerations(*inputs: StepInput) -> "StepOutput":
yield combined_list


@pytest.mark.xfail
@pytest.mark.timeout(240)
def test_routing_batch_function() -> None:
with Pipeline(name="test") as pipeline:
Expand All @@ -92,6 +93,7 @@ def test_routing_batch_function() -> None:
assert len(row["generations"]) == 2


@pytest.mark.xfail
@pytest.mark.timeout(240)
def test_routing_batch_function_irregular_batch_sizes() -> None:
with Pipeline(name="test") as pipeline:
Expand All @@ -117,6 +119,7 @@ def test_routing_batch_function_irregular_batch_sizes() -> None:
assert len(row["generations"]) == 2


@pytest.mark.xfail
@pytest.mark.timeout(240)
def test_multiple_routing_batch_function() -> None:
batch_size = 200
Expand Down

0 comments on commit 94852c4

Please sign in to comment.