-
Notifications
You must be signed in to change notification settings - Fork 5
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
Unable to use in two simultaneous instances #17
Comments
hmm I’m even finding now that I can’t have more than one test that exercises
ETA actually, I was incorrect, the second test was just producing a |
Thanks for the response! I made this repository to reproduce the problem. In e326b53, I added the Then in 418d51c I added a However, the error is different than the one I see locally and there are some CMake errors earlier in the log, so it may be that this isn’t a true reproduction. But when I have
I’m experiencing this on macOS 10.14.4. It’s not a disaster as I’ve just been killing the server when I want to run the tests. |
Hey, thanks for this library, I chose to start a new application in Elixir without ensuring something like this existed, so I’m glad it does!
I feel like a comparative neophyte when it comes to Elixir/Erlang and Phoenix so it may be that I’m missing something obvious, but I’ve found that I can’t use
modest_ex
when it’s already running in another process. For instance, if I’m runningmix phx.server
so I can interact with the live application, when I runmix test
to execute the tests, I get this error:If I kill the server process and run
mix test
, then the tests pass with no problem.I’ve tried a few things:
runtime: false
inmix.exs#deps
:modest_ex
inmix.exs#application extra_applications
Application.ensure_all_started(:modest_ex)
intest_helper.exs
I’m running this with Elixir 1.9.0 and Phoenix 1.4.7.
The text was updated successfully, but these errors were encountered: