Skip to content

Commit 4da12cc

Browse files
committed
fix test
1 parent 3aae6f0 commit 4da12cc

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/triton_cli/parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"opt125m": "hf:facebook/opt-125m",
6969
"mistral-7b": "hf:mistralai/Mistral-7B-v0.1",
7070
"falcon-7b": "hf:tiiuae/falcon-7b",
71+
"tinyllama-1.1b-chat-v1.0": "hf:TinyLlama/TinyLlama-1.1B-Chat-v1.0",
7172
}
7273

7374

tests/test_e2e.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ def test_vllm_openai_e2e(self, vllm_openai_server):
149149
os.environ.get("IMAGE_KIND") != "TRTLLM",
150150
reason="Only run for TRT-LLM image with LLM-API",
151151
)
152+
@pytest.mark.skipif(
153+
os.environ.get("TRTLLM_MODEL") == "gpt2",
154+
reason="LLM API doesn't support gpt2's model architecture yet",
155+
)
152156
@pytest.mark.parametrize(
153157
"protocol",
154158
[

0 commit comments

Comments
 (0)