Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 22467b7

Browse files
authored
Merge pull request #1260 from janhq/j/fix-e2e-failed-test
fix: e2e failed test when download model with selection
2 parents 7137b59 + 9a2b233 commit 22467b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/e2e-test/test_cli_model_delete.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pytest
2-
from test_runner import run
2+
from test_runner import popen, run
33

44

55
class TestCliModelDelete:
@@ -8,7 +8,7 @@ class TestCliModelDelete:
88
def setup_and_teardown(self):
99
# Setup
1010
# Pull model
11-
run("Pull Model", ["pull", "tinyllama"], 120)
11+
stdout, stderr, return_code = popen(["pull", "tinyllama"], "1\n")
1212

1313
yield
1414

0 commit comments

Comments
 (0)