Replies: 1 comment 3 replies
-
The inclusion of applications in the That being said, if the behaviour is included in the main (non-test) application and it relies on apps visible only during tests, then yeah that's gonna be a problem because it will sometimes be compiled without the test dependencies being present. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In order to get behavior modules to build in before their uses, it is recommended (if I understand correctly) that the application to which the behavior belongs is added to the
applications
field the*.app.src
file of the application which uses it. However, we have a case where we have behaviors which are only used during testing, and are thereby not supposed to be present at runtime. How can I make rebar3 build the applications in the correct order without modifying the*.app.src
file?Beta Was this translation helpful? Give feedback.
All reactions