You can temporarily remove the suffix '_test' from the test name (or add any other, for example '_ignore'). It will compile but will not appear in the summary (since it will be considered as a regular function and thus eunit will be ignored).
This, of course, is a workaround, eunit should support this functionality, but I am afraid that this is not happening.
The EUnit term “skipped” means that something prevented the test from starting, for example, a compilation failure, a node that was responsible for the test failure, or installation failure.
This concept is pretty deeply embedded in the code, so there is no easy way to get the user missed tests.
source
share