Skip to content

Commit

Permalink
xfail llama3.1 tests because files not availablbe on ci machine
Browse files Browse the repository at this point in the history
  • Loading branch information
renxida committed Dec 27, 2024
1 parent 896cbab commit f452b8a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions app_tests/integration_tests/llm/shortfin/test_llm_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,20 @@ class TestLLMServer:
[
("open_llama_3b", {"model": "open_llama_3b", "prefix_sharing": "none"}),
("open_llama_3b", {"model": "open_llama_3b", "prefix_sharing": "trie"}),
("llama3.1_8b", {"model": "llama3.1_8b", "prefix_sharing": "none"}),
("llama3.1_8b", {"model": "llama3.1_8b", "prefix_sharing": "trie"}),
pytest.param(
"llama3.1_8b",
{"model": "llama3.1_8b", "prefix_sharing": "none"},
marks=pytest.mark.xfail(
reason="llama3.1_8b irpa file not available on CI machine"
),
),
pytest.param(
"llama3.1_8b",
{"model": "llama3.1_8b", "prefix_sharing": "trie"},
marks=pytest.mark.xfail(
reason="llama3.1_8b irpa file not available on CI machine"
),
),
],
ids=[
"open_llama_3b_none",
Expand Down

0 comments on commit f452b8a

Please sign in to comment.