Skip to content

Commit e6f16be

Browse files
committed
?
1 parent eb614ed commit e6f16be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,9 @@ def run_in_thread(self):
642642
def uvicorn_server(request):
643643
app = request.param()
644644

645-
config = uvicorn.Config(app, host="127.0.0.1", port=5000, log_level="info")
645+
config = uvicorn.Config(
646+
app, host="127.0.0.1", port=5000, log_level="info", loop=None
647+
)
646648
server = UvicornServer(config=config)
647649

648650
with server.run_in_thread():

0 commit comments

Comments
 (0)