-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Non-terminating "test" actions #325
Comments
Abstractly, I want to:
I could do this quite easily in Haskell. Much less sure of how to do it in Rust+Tokio. What follows is a sketch of how I'd start, but since I don't know much about the codebase or Tokio I mostly expect it to start the brainstorming. The first thing I'd try is Line 904 in cfd9de8
and returning a Lines 68 to 75 in cfd9de8
and could then be waited on here: Lines 86 to 94 in cfd9de8
If an event happens before the test action task completes, the |
I'd like to run a non-terminating
--test-ghci
command (a warp web server).Currently this doesn't work as expected, because
ghciwatch
waits for the test action to finish before continuing to process events. I want events to be processed while the test action is running, so that the test action can be killed if a reload/restart event comes in.The text was updated successfully, but these errors were encountered: