3 Commits

Author SHA1 Message Date
Victor Derks
66a3605fd9
Add REUSE compatibility (#338)
- Follow the best practices of https://reuse.software/ to ensure BSD-3 licence is correctly applied.
- Add a badge to README.md
- Note: remove arm build as the CI pipeline is broken for this architecture
2024-12-04 12:33:36 +01:00
Dimitri Papadopoulos Orfanos
5a9b526180
Fix typos found by codespell (#335)
* Fix typos found by codespell

* Add missing >

---------

Co-authored-by: Victor Derks <vbaderks@gmail.com>
2024-09-25 22:59:02 +02:00
Victor Derks
c4f429b900
Enable code coverage in CI pipeline (#279)
The Azure CI Pipeline can analyze code coverage when running the unit tests. Enable this option. It provides an additional tab on the CI status report. On this tab a single code coverage number is displayed. The .coverage file can be downloaded and opened in Visual Studio to get more insights.
Only the debug DLL is code covered as it provided a good report. The release build has too many optimalizations to provide a report that is useful. 

Note 1: The unit test DLL needs to link with the CharLS .obj files to make it possible to unit test low level methods. This means however the the unit test DLL needs to be code covered and not the actual CharLS DLL.

Note 2: the Cobertura format was also tested, but it didn't provide additional details (only more warnings and complexity)
Enable code coverage in CI pipeline
2023-06-16 14:05:51 +02:00