Skip to content

Commit 7d3a926

Browse files
committed
docs: Consolidate coverage documentation into single guide
Consolidate 20 separate coverage markdown files into one comprehensive COVERAGE_GUIDE.md that includes: - Quick start instructions - Current status and metrics - Key discoveries (importance of -a flag) - Complete usage guide (local and CI) - Test suite expansion details - Troubleshooting section - Advanced topics and future work - FAQs and quick reference Also update .gitignore to exclude: - coverage_results/ directories - .gcov, .gcda, .gcno files - coverage HTML/XML/text reports This reduces documentation clutter while preserving all important information in a single, searchable guide. Files consolidated: - README_COVERAGE.md - COVERAGE_QUICK_REFERENCE.md - COVERAGE_FINAL_SUMMARY.md - POSTPROCESS_COVERAGE_RESULTS.md - NEXT_STEPS.md - And 15 other coverage documentation files Kept separate: - TEST_SUITE_EXPANSION_IMPLEMENTED.md (technical implementation details) - CI_COVERAGE_IMPLEMENTATION_COMPLETE.md (project status summary)
1 parent d4a2230 commit 7d3a926

22 files changed

+580
-4956
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ yarn.lock
88
src/*/include/case.fpp
99
src/*/autogen/
1010

11+
# Coverage results
12+
coverage_results/
13+
coverage_results_*/
14+
*.gcov
15+
*.gcda
16+
*.gcno
17+
coverage.html
18+
coverage.xml
19+
coverage_summary.txt
20+
coverage_report.html
21+
1122
*.swo
1223
*.swp
1324

BASELINE_COVERAGE_RESULTS.md

Lines changed: 0 additions & 153 deletions
This file was deleted.

0 commit comments

Comments
 (0)