We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adaf31c commit fe6f3c6Copy full SHA for fe6f3c6
python/tests/server/test_runner.py
@@ -43,7 +43,7 @@ async def runner():
43
await runner.setup()
44
yield runner
45
finally:
46
- runner.shutdown()
+ await runner.shutdown()
47
48
49
@pytest_asyncio.fixture
@@ -60,7 +60,7 @@ async def async_runner():
60
print("did setup")
61
62
63
64
65
66
@pytest.mark.asyncio
@@ -76,7 +76,7 @@ async def test_prediction_runner_setup():
76
assert isinstance(result.started_at, datetime)
77
assert isinstance(result.completed_at, datetime)
78
79
80
81
82
0 commit comments