proper icon indicating copy to clipboard operation
proper copied to clipboard

Integrate with code coverage?

Open linearregression opened this issue 9 years ago • 2 comments

Is there any documentation of showing that the results are integrated with code coverage? For example, would like to see that the tests will add to coder coverage with unit and common tests.

linearregression avatar Feb 12 '16 20:02 linearregression

Here's shown how to integrate proper with eunit http://proper.softlab.ntua.gr/User_Guide.html. Code coverage should be updated automatically.

ten0s avatar Mar 07 '17 13:03 ten0s

If you are using rebar3 with a dependency on the rebar3_proper plugin in your test profile, here is what you can do to get coverage information:

$ echo '{cover_enabled, true}' >>rebar.config
$ rebar3 cover --reset
$ rebar3 as test proper
$ rebar3 cover --verbose

This should probably go into the user guide page @ten0s linked. In the README too I guess.

fenollp avatar Apr 26 '18 13:04 fenollp