I have a project A, which depends on a dependency B created by me also...
when I want to launch test on A with a simple mix test
, it's getting the dependecy B, compiling it and starting it in :prod
environnement...
Which mean A is in :test
environnement and B is in :prod
env.
I would like for the tests to launch the dependency in :dev
environnement (or anything else but :prod
), is there a way to do that ?
B
project in the requested environment to it. That way the projectB
in local would always have been compiled in the same environment asA
currently is. – Aleksei Matiushkin