File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ BUILDKIT_PROGRESS=plain
24
24
DOCKER_COMPOSE =docker compose
25
25
26
26
# TOOLS
27
- COVERAGE_TOOL_OPTS =--config-file .lcovrc --ignore-errors empty
27
+ COVERAGE_TOOL_OPTS =--config-file .lcovrc --ignore-errors empty --ignore-errors inconsistent
28
28
29
29
# C++ specific
30
30
SRC_DIR = src
@@ -96,10 +96,10 @@ test: env dependencies build
96
96
cd build && make test
97
97
98
98
coverage : test
99
- lcov ${COVERAGE_TOOL_OPTS} -o coverage/lcov.info --no-external -c --exclude " build/vcpkg_installed" --exclude " test.cpp" -d .
99
+ lcov ${COVERAGE_TOOL_OPTS} -o coverage/lcov.info --no-external --capture --exclude " build/vcpkg_installed" --exclude " test.cpp" --directory .
100
100
101
101
coverage/html : coverage
102
- genhtml ${COVERAGE_TOOL_OPTS} -o coverage/ -s --legend coverage/lcov.info
102
+ genhtml ${COVERAGE_TOOL_OPTS} -o coverage/ --show-details --legend coverage/lcov.info
103
103
open coverage/index.html
104
104
105
105
outdated :
You can’t perform that action at this time.
0 commit comments