this repo has no description

Enable coverage of cram tests

See https://github.com/ocaml/dune/issues/3884 for some discussion about the
problem / workaround

+3 -2
+3 -2
Makefile
··· 21 21 22 22 .PHONY : coverage 23 23 coverage : 24 - dune build --instrument-with bisect_ppx @test/runtest --no-buffer -j 1 --force || true 25 - bisect-ppx-report html 24 + mkdir -p _coverage 25 + BISECT_FILE=`pwd`/_coverage/bisect dune build --instrument-with bisect_ppx @test/runtest --no-buffer -j 1 --force || true 26 + bisect-ppx-report html --coverage-path `pwd`/_coverage 26 27 @echo See _coverage/index.html 27 28 28 29 .PHONY : clean