Skip to content

Commit

Permalink
skip test that uses new API
Browse files Browse the repository at this point in the history
  • Loading branch information
najielhachem committed Oct 3, 2023
1 parent 74202b8 commit 006bf59
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/unit/data/data_pipeline/test_round_robin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from fairseq2.data import DataPipeline, DataPipelineError, read_sequence
from fairseq2.data.text import read_text
from tests.common import python_devel_only


class TestRoundRobinOp:
Expand Down Expand Up @@ -76,6 +77,10 @@ def test_op_works_when_pipelines_have_different_lengths(self) -> None:

pipeline.reset()

@pytest.mark.skipif(
python_devel_only(),
reason="New fairseq2n API in Python-only installation. Skipping till v0.2.",
)
def test_op_works_when_pipelines_have_different_lengths_stop_on_shortest(
self,
) -> None:
Expand Down

0 comments on commit 006bf59

Please sign in to comment.