y9luiz / FaceRecognitionServer

A face recognition server written in C++ [Under development]
1 stars 2 forks source link

Fix code coverage reports #21

Closed y9luiz closed 1 year ago

y9luiz commented 1 year ago

Right now we have some code reports that have a wrong regex expression using the flag `-ignore-filename-regex=boost``. The right expression should exclude mocks, tests, and all the .cpp and .h files that are not present in the target library/executable.

Code coverage must be working in all platforms that support llvm compilers.

y9luiz commented 1 year ago

I decided to use a different tool in order to make the reports more fancy.

I'm using the lcov tool

and I opened the following PR to applied this fix:

https://github.com/y9luiz/FaceRecognitionServer/pull/26