blob: 10fdf37cd3471751509cea0a19d59cab68014e4b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
rm -rf _coverage
echo "Running tests"
dune test --instrument-with bisect_ppx --force
echo "Generating report"
bisect-ppx-report html
bisect-ppx-report summary --per-file
echo "See lib/extraction/interp.ml above or see the detailed report (in HTML form) at _coverage/html/lib/extraction/interp.ml.html"
|