File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
pkgs/development/python-modules/kserve Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 4646 avro ,
4747 grpcio-testing ,
4848 pytest-asyncio ,
49+ pytest-httpx ,
4950 pytest-xdist ,
5051 pytestCheckHook ,
5152 tomlkit ,
5253} :
5354
5455buildPythonPackage rec {
5556 pname = "kserve" ;
56- version = "0.15.0 " ;
57+ version = "0.15.1 " ;
5758 pyproject = true ;
5859
5960 src = fetchFromGitHub {
6061 owner = "kserve" ;
6162 repo = "kserve" ;
6263 tag = "v${ version } " ;
63- hash = "sha256-J2VFMHwhHpvtsywv3ixuVzpuDwq8y9w4heedYYWVBmM =" ;
64+ hash = "sha256-k+uyOhsxWPpiA82wCCEn53W2VQgSHGgSABFipEPErRk =" ;
6465 } ;
6566
6667 sourceRoot = "${ src . name } /python/kserve" ;
@@ -115,14 +116,15 @@ buildPythonPackage rec {
115116 logging = [ asgi-logger ] ;
116117 ray = [ ray ] ;
117118 llm = [
118- # vllm (broken)
119+ vllm
119120 ] ;
120121 } ;
121122
122123 nativeCheckInputs = [
123124 avro
124125 grpcio-testing
125126 pytest-asyncio
127+ pytest-httpx
126128 pytest-xdist
127129 pytestCheckHook
128130 tomlkit
@@ -147,17 +149,13 @@ buildPythonPackage rec {
147149 "--deselect=test/test_server.py::TestRayServer::test_list_handler"
148150 "--deselect=test/test_server.py::TestRayServer::test_liveness_handler"
149151 "--deselect=test/test_server.py::TestRayServer::test_predict"
152+ # Permission Error
153+ "--deselect=test/test_server.py::TestMutiProcessServer::test_rest_server_multiprocess"
150154 ] ;
151155
152156 disabledTestPaths = [
153157 # Looks for a config file at the root of the repository
154158 "test/test_inference_service_client.py"
155-
156- # Require broken vllm
157- "test/test_dataplane.py"
158- "test/test_model_repository.py"
159- "test/test_openai_completion.py"
160- "test/test_openai_embedding.py"
161159 ] ;
162160
163161 disabledTests =
You can’t perform that action at this time.
0 commit comments