I need to run OpenCover against a battery of 1000+ tests. I am interested only in:
- % of lines covered
- Which lines are covered and which are not
I don't need:
- Visit count
- Number of CPU cycles / real execution time
- Any performance report
From the documentation I can see that could use some parameters to tweak performance:
- -log:Off
- -mergebyhash
- -skipautoprops
- -threshold:1
- -excludebyattribute:???
- -hideskipped:All
- -oldstyle
However since the documentation is not clear on how these attributes affect performance, I am currently following a trial and error approach, which can literally take days to execute since I have literally hundreds of tests to run, so any information would be highly appreciated.