We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9619bc commit dda5242Copy full SHA for dda5242
.github/workflows/check.yml
@@ -76,3 +76,15 @@ jobs:
76
--nocache_test_results \
77
--nostamp
78
79
+ - name: Install lcov
80
+ run: |
81
+ sudo apt-get update
82
+ sudo apt-get install -y lcov
83
+
84
+ - name: Extract Coverage for kvs.cpp
85
86
+ REPORT=$(find "$(bazel info output_path)" -name _coverage_report.dat | head -n1)
87
+ lcov \
88
+ --rc lcov_branch_coverage=1 \
89
+ --extract "$REPORT" "src/cpp/src/kvs.cpp" \
90
+ --output-file kvs_coverage.info
0 commit comments