Skip to content

Commit

Permalink
test: Added skip
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgardin committed Mar 27, 2024
1 parent 5dff07f commit 2e6fabf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_tokenizer_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
argnames=["tokenizer_name", "expected_tokenizer_instance"],
argvalues=[
("j2-tokenizer", JurassicTokenizer),
("jamba-tokenizer", JambaInstructTokenizer),
pytest.param(
"jamba-tokenizer",
JambaInstructTokenizer,
marks=pytest.mark.skip(reason="JambaInstructTokenizer is not yet Open Source in HuggingFace"),
),
],
)
def test_tokenizer_factory__get_tokenizer(
Expand Down

0 comments on commit 2e6fabf

Please sign in to comment.