Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/python_tests/samples/test_beam_search_causal_lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def test_sample_beam_search_causal_lm(self, convert_model, sample_args):

@pytest.mark.llm
@pytest.mark.samples
@pytest.mark.skipif(sys.platform == "win32", reason="CVS-165582")
@pytest.mark.parametrize("convert_model", ["SmolLM2-135M"], indirect=True)
@pytest.mark.parametrize("sample_args",
[
Expand Down
1 change: 1 addition & 0 deletions tests/python_tests/samples/test_benchmark_genai.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

class TestBenchmarkGenAI:
@pytest.mark.llm
@pytest.mark.xfail(reason="CVS-165581")
@pytest.mark.samples
@pytest.mark.parametrize(
"convert_model, prompt, sample_args",
Expand Down
3 changes: 2 additions & 1 deletion tests/python_tests/samples/test_greedy_causal_lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
class TestGreedyCausalLM:
@pytest.mark.llm
@pytest.mark.samples
@pytest.mark.skipif(sys.platform == "win32", reason="CVS-165582")
@pytest.mark.parametrize(
"convert_model, sample_args",
[
pytest.param("SmolLM-135M", "return 0"),
pytest.param("Qwen2-0.5B-Instruct", "69"),
pytest.param("phi-1_5", "Alan Turing was a"),
pytest.param("TinyLlama-1.1B-Chat-v1.0", "Alan Turing was a"),
pytest.param("TinyLlama-1.1B-Chat-v1.0", "Alan Turing was a", marks=pytest.mark.xfail(reason="CVS-165581")),
],
indirect=["convert_model"],
)
Expand Down
2 changes: 1 addition & 1 deletion tests/python_tests/samples/test_multinomial_causal_lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TestMultinomialCausalLM:
pytest.param(
"TinyLlama-1.1B-Chat-v1.0",
"0",
marks=pytest.mark.skipif(sys.platform == "darwin", reason="CVS-163463")
marks=pytest.mark.xfail(reason="CVS-165581") #marks=pytest.mark.skipif(sys.platform == "darwin", reason="CVS-163463")
),
],
indirect=["convert_model"],
Expand Down
Loading