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.
This commit is contained in:
thePR0M3TH3AN
2025-05-20 14:11:25 -04:00
parent c59fcc8c5c
commit 2c6555d7f5
2 changed files with 10 additions and 1 deletions

5
.gitignore vendored
View File

@@ -44,4 +44,7 @@ saved_config.yaml
# === Other Dirs ===
/bench/corpus
/bench/backups
/bench/backups
/target/
/cobertura.xml
/tarpaulin-report.html

View File

@@ -69,4 +69,10 @@ or
```bash
./run_all_tests.sh
```
to see test coverage run:
```bash
cargo tarpaulin --out Html
```