I am trying to generate a html report using ceedling and gcov. But I keep getting a empty html report. I have added report_include like this link mentions at the bottom of the page - https://github.com/ThrowTheSwitch/Ceedling/tree/master/plugins/gcov
:gcov:
:reports:
- HtmlDetailed
:gcovr:
:html_medium_threshold: 75
:html_high_threshold: 90
:report_include: "^..Code/Src/*"
I have enabled gcov in the yml file. Ceedling and gcovr are installed.
Anything I try I always get a empty html report.
I did have it working a month ago with the report_include not using the ^ and including the whole Code folder.
:report_include: "..Code/*"
But now it does not want to work.
Any help would be appreciated, thanks!