diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 43f6699..4919e79 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -70,6 +70,8 @@ jobs: uses: codecov/codecov-action@v5 with: files: coverage/cobertura.xml + disable_search: true + plugins: noop use_oidc: true - name: Upload coverage report diff --git a/CMakeLists.txt b/CMakeLists.txt index 8055457..0d6239a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -283,4 +283,5 @@ if(ENABLE_COVERAGE) endif() target_compile_options(GameAnalytics PRIVATE -g -O0 --coverage -fprofile-update=atomic) target_link_options(GameAnalytics PUBLIC --coverage) + target_compile_options(${UT_PROJECT_NAME} PRIVATE -g -O0 --coverage -fprofile-update=atomic) endif() diff --git a/gcovr.cfg b/gcovr.cfg index 90152d2..c2afe46 100644 --- a/gcovr.cfg +++ b/gcovr.cfg @@ -1,4 +1,3 @@ filter = source/gameanalytics/ filter = include/GameAnalytics/ -exclude = source/gameanalytics/Platform/ exclude-throw-branches = yes