We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f8bd6b commit 9454603Copy full SHA for 9454603
.lightning/workflows/tests.yml
@@ -52,7 +52,7 @@ run: |
52
uv run py-tree /var/tmp/torch
53
54
# Testing
55
- uv run coverage run --source litserve -m pytest src tests -v
+ uv run coverage run --source litserve -m pytest src tests -v --capture=no
56
57
# Coverage reporting
58
uv run coverage report
tests/unit/test_lit_server.py
@@ -773,7 +773,7 @@ async def test_worker_restart_and_server_shutdown():
773
resp = await ac.post("/predict", json={"input": 0}, timeout=2)
774
assert resp.status_code == 500
775
776
- await asyncio.sleep(1)
+ await asyncio.sleep(2)
777
778
tasks = []
779
for _ in range(50):
0 commit comments