Skip to content

Commit

Permalink
Fix LLM Server Failing CIs (#362)
Browse files Browse the repository at this point in the history
Add skip statements for cases where requirements-test.txt is not
installed
  • Loading branch information
stbaione authored Oct 29, 2024
1 parent 7c39517 commit 4fbc619
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions shortfin/tests/apps/llm/cpu_llm_server_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
import tempfile
import shutil

pytest.importorskip("transformers", "transformers is not installed")
pytest.importorskip("tokenizers", "tokenizers is not installed")

BATCH_SIZES = [1, 4]

cpu_settings = {
Expand Down

0 comments on commit 4fbc619

Please sign in to comment.