I am trying to run a test coverage report in my project, but there are some difficulties. I run
$ mix test --cover
1) Is there a way to ignore some files? I'd like to ignore some auto-generated files from the coverage report, because the files that matter are those that I created code.
2) The generated report have some mysterious bugs. It shows that module definition lines are uncovered, but at the same time some lines inside the module are covered. Also it shows method definition lines uncovered, but lines inside those methods are covered. Here is an example. How
Thanks
D