-
I'm trying to do E2E testing, and I was hoping I could set up a live server the same way I do for FastAPI apps, using uvicorn. The app doesn't seem to be fully starting up however, so I'm wondering if I need to account for some difference between the frameworks. Approximate code:
|
Beta Was this translation helpful? Give feedback.
Answered by
pgjones
Sep 26, 2023
Replies: 1 comment 1 reply
-
I got it working once I added a waiting step:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you could also use a multiprocessing event to signal in a Quart before_serving that it was ready for requests but it is good this works.