Document how to generate test coverage report

This commit is contained in:
Pekka Enberg
2023-09-06 19:14:26 +03:00
parent 7c894f3b70
commit 04bf7324eb

View File

@@ -33,6 +33,18 @@ cargo run hello.db
## Developing
Run tests:
```console
cargo test
```
Test coverage report:
```
cargo tarpaulin -o html
```
Run benchmarks:
```console