From 2c6555d7f505985c9a4bdf356b6a79c23fab7695 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Tue, 20 May 2025 14:11:25 -0400 Subject: [PATCH] Update .gitignore and enhance test documentation for coverage reporting - Add /bench/backups, /target/, cobertura.xml, and tarpaulin-report.html to .gitignore to prevent tracking of generated files. - Update test.md to include instructions for running tests and generating coverage reports using cargo tarpaulin. --- .gitignore | 5 ++++- cli-bin/tests/test.md | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7b0879d..a898024 100644 --- a/.gitignore +++ b/.gitignore @@ -44,4 +44,7 @@ saved_config.yaml # === Other Dirs === /bench/corpus -/bench/backups \ No newline at end of file +/bench/backups +/target/ +/cobertura.xml +/tarpaulin-report.html diff --git a/cli-bin/tests/test.md b/cli-bin/tests/test.md index 3b3911e..437b7e8 100644 --- a/cli-bin/tests/test.md +++ b/cli-bin/tests/test.md @@ -69,4 +69,10 @@ or ```bash ./run_all_tests.sh +``` + +to see test coverage run: + +```bash +cargo tarpaulin --out Html ``` \ No newline at end of file